:root {
    /* primitives */

    --neutral-white: #FFFFFF;
    --neutral-000: #FAFBFC;
    --neutral-050: #F4F6F8;
    --neutral-100: #ECEFF1;
    --neutral-150: #E0E5E8;
    --neutral-200: #D2D8DC;
    --neutral-300: #B5BDC2;
    --neutral-400: #969FA5;
    --neutral-500: #7A8890;
    --neutral-600: #5F6F78;
    --neutral-700: #485965;
    --neutral-750: #364755;
    --neutral-800: #263B48;
    --neutral-850: #1A3340;
    --neutral-900: #142C3A;
    --neutral-black: #000000;

    --active-000: #FFFAF0;
    --active-050: #FFF2D9;
    --active-100: #FFEAC3;
    --active-150: #FFDDA0;
    --active-200: #FFD17E;
    --active-300: #FFC966;
    --active-400: #FFC04D;
    --active-500: #FFBC3F;
    --active-600: #FFB735;
    --active-700: #FFB22A;
    --active-750: #FFA61E;
    --active-800: #FF9D11;
    --active-850: #D97800;
    --active-900: #B86200;

    --blue-050: #E6F3FE;
    --blue-100: #C5E2FC;
    --blue-200: #82C2F7;
    --blue-500: #1E97EE;
    --blue-700: #0D89EA;
    --blue-800: #0670C5;
    --blue-900: #03477E;

    --teal-050: #F3FBFE;
    --teal-200: #88D4F0;
    --teal-500: #12A9E2;

    --green-050: #E8F5E1;
    --green-100: #CDEBB8;
    --green-200: #9DD683;
    --green-500: #23A33D;
    --green-700: #008020;
    --green-800: #006519;
    --green-900: #003D0F;

    --red-050: #FEEAE7;
    --red-100: #FECCC4;
    --red-200: #FB988A;
    --red-500: #F4513E;
    --red-700: #EE3322;
    --red-800: #C42012;
    --red-900: #7A1108;

    --yellow-400: #FFF3B5;

    --purple-050: #F2E8FB;
    --purple-100: #E1CCF6;
    --purple-200: #C29CEC;
    --purple-500: #9054C2;
    --purple-700: #7D42B2;
    --purple-800: #5F2D8C;
    --purple-900: #3A1A57;

    --pink-050: #FFF7FE;
    --pink-200: #FFB0F2;
    --pink-500: #FF61E6;

    --alpha-50: rgba(20, 44, 58, 0.04);
    --alpha-200: rgba(20, 44, 58, 0.12);
    --alpha-700: rgba(20, 44, 58, 0.72);

    /* end primitives */

    /* semantic vars, whitelisted for use in workspaces */
    --primary: var(--active-700);
    --primary-light: var(--active-100);
    --primary-medium: var(--active-200);
    /* end semantic */

    /*
        boards/legacy vars — still needed for react-datepicker and salary input.
        do not use these in workspace component code.
    */
    --background-primary: var(--neutral-white);
    --background-secondary: var(--neutral-100);
    --background-tertiary: var(--neutral-white);
    --background-inverse: var(--neutral-black);

    --gray-4: var(--neutral-100);
    --gray-8: var(--neutral-100);
    --gray-16: var(--neutral-200);
    --gray-24: var(--neutral-300);
    --gray-48: var(--neutral-500);
    --gray-72: var(--neutral-750);
    --gray-96: var(--neutral-900);

    --link: var(--blue-800);
    --hover: var(--primary);

    --text: var(--gray-72);
    --text-inverse: var(--neutral-white);
    --text-light: var(--gray-48);

    --border-xs: 2px;
    --border-small: 4px;
    --border-md: 8px;
    --border-xl: 999px;

    --tab-spacing: 4px;
}

/**
 * This is a copy of the react-datepicker vendor styles
 * with relevant colors replaced with boards theme variables.
 *
 * >>> NO STRUCTURAL CUSTOM CSS SHOULD BE WRITTEN HERE <<<
 *
 * If you need to change layouts etc do so in boards.css
 */

.react-datepicker__year-read-view--down-arrow,
.react-datepicker__month-read-view--down-arrow,
.react-datepicker__month-year-read-view--down-arrow, .react-datepicker__navigation-icon::before {
  border-color: var(--primary);
  border-style: solid;
  border-width: 3px 3px 0 0;
  content: "";
  display: block;
  height: 9px;
  position: absolute;
  top: 6px;
  width: 9px;
}
.react-datepicker-popper[data-placement^=top] .react-datepicker__triangle, .react-datepicker-popper[data-placement^=bottom] .react-datepicker__triangle {
  margin-left: -4px;
  position: absolute;
  width: 0;
}
.react-datepicker-popper[data-placement^=top] .react-datepicker__triangle::before, .react-datepicker-popper[data-placement^=bottom] .react-datepicker__triangle::before, .react-datepicker-popper[data-placement^=top] .react-datepicker__triangle::after, .react-datepicker-popper[data-placement^=bottom] .react-datepicker__triangle::after {
  box-sizing: content-box;
  position: absolute;
  border: 8px solid transparent;
  height: 0;
  width: 1px;
  content: "";
  z-index: -1;
  border-width: 8px;
  left: -8px;
}
.react-datepicker-popper[data-placement^=top] .react-datepicker__triangle::before, .react-datepicker-popper[data-placement^=bottom] .react-datepicker__triangle::before {
  border-bottom-color: var(--gray-16);
}

.react-datepicker-popper[data-placement^=bottom] .react-datepicker__triangle {
  top: 0;
  margin-top: -8px;
}
.react-datepicker-popper[data-placement^=bottom] .react-datepicker__triangle::before, .react-datepicker-popper[data-placement^=bottom] .react-datepicker__triangle::after {
  border-top: none;
  border-bottom-color: var(--gray-8);
}
.react-datepicker-popper[data-placement^=bottom] .react-datepicker__triangle::after {
  top: 0;
}
.react-datepicker-popper[data-placement^=bottom] .react-datepicker__triangle::before {
  top: -1px;
  border-bottom-color: var(--gray-16);
}

.react-datepicker-popper[data-placement^=top] .react-datepicker__triangle {
  bottom: 0;
  margin-bottom: -8px;
}
.react-datepicker-popper[data-placement^=top] .react-datepicker__triangle::before, .react-datepicker-popper[data-placement^=top] .react-datepicker__triangle::after {
  border-bottom: none;
  border-top-color: var(--background-primary);
}
.react-datepicker-popper[data-placement^=top] .react-datepicker__triangle::after {
  bottom: 0;
}
.react-datepicker-popper[data-placement^=top] .react-datepicker__triangle::before {
  bottom: -1px;
  border-top-color: var(--gray-16);
}

.react-datepicker-wrapper {
  display: inline-block;
  padding: 0;
  border: 0;
}

.react-datepicker {
  font-family: "Helvetica Neue", helvetica, arial, sans-serif;
  font-size: 0.8rem;
  background-color: var(--background-primary);
  color: var(--text);
  border: 1px solid var(--gray-16);
  border-radius: 0.3rem;
  display: inline-block;
  position: relative;
}

.react-datepicker--time-only .react-datepicker__triangle {
  left: 35px;
}
.react-datepicker--time-only .react-datepicker__time-container {
  border-left: 0;
}
.react-datepicker--time-only .react-datepicker__time,
.react-datepicker--time-only .react-datepicker__time-box {
  border-bottom-left-radius: 0.3rem;
  border-bottom-right-radius: 0.3rem;
}

.react-datepicker__triangle {
  position: absolute;
  left: 50px;
}

.react-datepicker-popper {
  z-index: 1;
}
.react-datepicker-popper[data-placement^=bottom] {
  padding-top: 10px;
}
.react-datepicker-popper[data-placement=bottom-end] .react-datepicker__triangle, .react-datepicker-popper[data-placement=top-end] .react-datepicker__triangle {
  left: auto;
  right: 50px;
}
.react-datepicker-popper[data-placement^=top] {
  padding-bottom: 10px;
}
.react-datepicker-popper[data-placement^=right] {
  padding-left: 8px;
}
.react-datepicker-popper[data-placement^=right] .react-datepicker__triangle {
  left: auto;
  right: 42px;
}
.react-datepicker-popper[data-placement^=left] {
  padding-right: 8px;
}
.react-datepicker-popper[data-placement^=left] .react-datepicker__triangle {
  left: 42px;
  right: auto;
}

.react-datepicker__header {
  text-align: center;
  background-color: var(--gray-8);
  border-bottom: 1px solid var(--gray-16);
  border-top-left-radius: 0.3rem;
  padding: 8px 0;
  position: relative;
}
.react-datepicker__header--time {
  padding-bottom: 8px;
  padding-left: 5px;
  padding-right: 5px;
}
.react-datepicker__header--time:not(.react-datepicker__header--time--only) {
  border-top-left-radius: 0;
}
.react-datepicker__header:not(.react-datepicker__header--has-time-select) {
  border-top-right-radius: 0.3rem;
}

.react-datepicker__year-dropdown-container--select,
.react-datepicker__month-dropdown-container--select,
.react-datepicker__month-year-dropdown-container--select,
.react-datepicker__year-dropdown-container--scroll,
.react-datepicker__month-dropdown-container--scroll,
.react-datepicker__month-year-dropdown-container--scroll {
  display: inline-block;
  margin: 0 15px;
}

.react-datepicker__current-month,
.react-datepicker-time__header,
.react-datepicker-year-header {
  margin-top: 0;
  color: var(--text);
  font-weight: bold;
  font-size: 0.944rem;
}

.react-datepicker-time__header {
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}

.react-datepicker__navigation {
  align-items: center;
  background: none;
  display: flex;
  justify-content: center;
  text-align: center;
  cursor: pointer;
  position: absolute;
  top: 2px;
  padding: 0;
  border: none;
  z-index: 1;
  height: 32px;
  width: 32px;
  text-indent: -999em;
  overflow: hidden;
}
.react-datepicker__navigation--previous {
  left: 2px;
}
.react-datepicker__navigation--next {
  right: 2px;
}
.react-datepicker__navigation--next--with-time:not(.react-datepicker__navigation--next--with-today-button) {
  right: 85px;
}
.react-datepicker__navigation--years {
  position: relative;
  top: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.react-datepicker__navigation--years-previous {
  top: 4px;
}
.react-datepicker__navigation--years-upcoming {
  top: -4px;
}
.react-datepicker__navigation:hover *::before {
  border-color: var(--gray-48);
}

.react-datepicker__navigation-icon {
  position: relative;
  top: -1px;
  font-size: 20px;
  width: 0;
}
.react-datepicker__navigation-icon--next {
  left: -2px;
}
.react-datepicker__navigation-icon--next::before {
  transform: rotate(45deg);
  left: -7px;
}
.react-datepicker__navigation-icon--previous {
  right: -2px;
}
.react-datepicker__navigation-icon--previous::before {
  transform: rotate(225deg);
  right: -7px;
}

.react-datepicker__month-container {
  float: left;
}

.react-datepicker__year {
  margin: 0.4rem;
  text-align: center;
}
.react-datepicker__year-wrapper {
  display: flex;
  flex-wrap: wrap;
  max-width: 180px;
}
.react-datepicker__year .react-datepicker__year-text {
  display: inline-block;
  width: 4rem;
  margin: 2px;
}

.react-datepicker__month {
  margin: 0.4rem;
  text-align: center;
}
.react-datepicker__month .react-datepicker__month-text,
.react-datepicker__month .react-datepicker__quarter-text {
  display: inline-block;
  width: 4rem;
  margin: 2px;
}

.react-datepicker__input-time-container {
  clear: both;
  width: 100%;
  float: left;
  margin: 5px 0 10px 15px;
  text-align: left;
}
.react-datepicker__input-time-container .react-datepicker-time__caption {
  display: inline-block;
}
.react-datepicker__input-time-container .react-datepicker-time__input-container {
  display: inline-block;
}
.react-datepicker__input-time-container .react-datepicker-time__input-container .react-datepicker-time__input {
  display: inline-block;
  margin-left: 10px;
}
.react-datepicker__input-time-container .react-datepicker-time__input-container .react-datepicker-time__input input {
  width: auto;
}
.react-datepicker__input-time-container .react-datepicker-time__input-container .react-datepicker-time__input input[type=time]::-webkit-inner-spin-button,
.react-datepicker__input-time-container .react-datepicker-time__input-container .react-datepicker-time__input input[type=time]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.react-datepicker__input-time-container .react-datepicker-time__input-container .react-datepicker-time__input input[type=time] {
  -moz-appearance: textfield;
}
.react-datepicker__input-time-container .react-datepicker-time__input-container .react-datepicker-time__delimiter {
  margin-left: 5px;
  display: inline-block;
}

.react-datepicker__time-container {
  float: right;
  border-left: 1px solid var(--gray-16);
  width: 85px;
}
.react-datepicker__time-container--with-today-button {
  display: inline;
  border: 1px solid var(--gray-16);
  border-radius: 0.3rem;
  position: absolute;
  right: -87px;
  top: 0;
}
.react-datepicker__time-container .react-datepicker__time {
  position: relative;
  background: white;
  border-bottom-right-radius: 0.3rem;
}
.react-datepicker__time-container .react-datepicker__time .react-datepicker__time-box {
  width: 85px;
  overflow-x: hidden;
  margin: 0 auto;
  text-align: center;
  border-bottom-right-radius: 0.3rem;
}
.react-datepicker__time-container .react-datepicker__time .react-datepicker__time-box ul.react-datepicker__time-list {
  list-style: none;
  margin: 0;
  height: calc(195px + 1.7rem / 2);
  overflow-y: scroll;
  padding-right: 0;
  padding-left: 0;
  width: 100%;
  box-sizing: content-box;
}
.react-datepicker__time-container .react-datepicker__time .react-datepicker__time-box ul.react-datepicker__time-list li.react-datepicker__time-list-item {
  height: 30px;
  padding: 5px 10px;
  white-space: nowrap;
}
.react-datepicker__time-container .react-datepicker__time .react-datepicker__time-box ul.react-datepicker__time-list li.react-datepicker__time-list-item:hover {
  cursor: pointer;
  background-color: var(--gray-8);
}
.react-datepicker__time-container .react-datepicker__time .react-datepicker__time-box ul.react-datepicker__time-list li.react-datepicker__time-list-item--selected {
  background-color: var(--primary);
  color: white;
  font-weight: bold;
}
.react-datepicker__time-container .react-datepicker__time .react-datepicker__time-box ul.react-datepicker__time-list li.react-datepicker__time-list-item--selected:hover {
  background-color: var(--primary);
}
.react-datepicker__time-container .react-datepicker__time .react-datepicker__time-box ul.react-datepicker__time-list li.react-datepicker__time-list-item--disabled {
  color: var(--gray-24);
}
.react-datepicker__time-container .react-datepicker__time .react-datepicker__time-box ul.react-datepicker__time-list li.react-datepicker__time-list-item--disabled:hover {
  cursor: default;
  background-color: transparent;
}

.react-datepicker__week-number {
  color: var(--gray-24);
  display: inline-block;
  width: 1.7rem;
  line-height: 1.7rem;
  text-align: center;
  margin: 0.166rem;
}
.react-datepicker__week-number.react-datepicker__week-number--clickable {
  cursor: pointer;
}
.react-datepicker__week-number.react-datepicker__week-number--clickable:hover {
  border-radius: 0.3rem;
  background-color: var(--gray-8);
}

.react-datepicker__day-names,
.react-datepicker__week {
  white-space: nowrap;
}

.react-datepicker__day-names {
  margin-bottom: -8px;
}

.react-datepicker__day-name,
.react-datepicker__day,
.react-datepicker__time-name {
  color: var(--text);
  display: inline-block;
  width: 1.7rem;
  line-height: 1.7rem;
  text-align: center;
  margin: 0.166rem;
}

.react-datepicker__day,
.react-datepicker__month-text,
.react-datepicker__quarter-text,
.react-datepicker__year-text {
  cursor: pointer;
}
.react-datepicker__day:hover,
.react-datepicker__month-text:hover,
.react-datepicker__quarter-text:hover,
.react-datepicker__year-text:hover {
  border-radius: 0.3rem;
  background-color: var(--primary);
  color: var(--text-inverse);
}
.react-datepicker__day--today,
.react-datepicker__month-text--today,
.react-datepicker__quarter-text--today,
.react-datepicker__year-text--today {
  font-weight: bold;
}
.react-datepicker__day--highlighted,
.react-datepicker__month-text--highlighted,
.react-datepicker__quarter-text--highlighted,
.react-datepicker__year-text--highlighted {
  border-radius: 0.3rem;
  background-color: #3dcc4a;
  color: var(--background-primary);
}
.react-datepicker__day--highlighted:hover,
.react-datepicker__month-text--highlighted:hover,
.react-datepicker__quarter-text--highlighted:hover,
.react-datepicker__year-text--highlighted:hover {
  background-color: #32be3f;
}
.react-datepicker__day--highlighted-custom-1,
.react-datepicker__month-text--highlighted-custom-1,
.react-datepicker__quarter-text--highlighted-custom-1,
.react-datepicker__year-text--highlighted-custom-1 {
  color: magenta;
}
.react-datepicker__day--highlighted-custom-2,
.react-datepicker__month-text--highlighted-custom-2,
.react-datepicker__quarter-text--highlighted-custom-2,
.react-datepicker__year-text--highlighted-custom-2 {
  color: green;
}
.react-datepicker__day--holidays,
.react-datepicker__month-text--holidays,
.react-datepicker__quarter-text--holidays,
.react-datepicker__year-text--holidays {
  position: relative;
  border-radius: 0.3rem;
  background-color: #ff6803;
  color: var(--background-primary);
}
.react-datepicker__day--holidays .holiday-overlay,
.react-datepicker__month-text--holidays .holiday-overlay,
.react-datepicker__quarter-text--holidays .holiday-overlay,
.react-datepicker__year-text--holidays .holiday-overlay {
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  background-color: #333;
  color: var(--background-primary);
  padding: 4px;
  border-radius: 4px;
  white-space: nowrap;
  visibility: hidden;
  opacity: 0;
  transition: visibility 0s, opacity 0.3s ease-in-out;
}
.react-datepicker__day--holidays:hover,
.react-datepicker__month-text--holidays:hover,
.react-datepicker__quarter-text--holidays:hover,
.react-datepicker__year-text--holidays:hover {
  background-color: #cf5300;
}
.react-datepicker__day--holidays:hover .holiday-overlay,
.react-datepicker__month-text--holidays:hover .holiday-overlay,
.react-datepicker__quarter-text--holidays:hover .holiday-overlay,
.react-datepicker__year-text--holidays:hover .holiday-overlay {
  visibility: visible;
  opacity: 1;
}
.react-datepicker__day--selected, .react-datepicker__day--in-selecting-range, .react-datepicker__day--in-range,
.react-datepicker__month-text--selected,
.react-datepicker__month-text--in-selecting-range,
.react-datepicker__month-text--in-range,
.react-datepicker__quarter-text--selected,
.react-datepicker__quarter-text--in-selecting-range,
.react-datepicker__quarter-text--in-range,
.react-datepicker__year-text--selected,
.react-datepicker__year-text--in-selecting-range,
.react-datepicker__year-text--in-range {
  border-radius: 0.3rem;
  background-color: var(--primary);
  color: var(--text-inverse);
}
.react-datepicker__day--selected:hover, .react-datepicker__day--in-selecting-range:hover, .react-datepicker__day--in-range:hover,
.react-datepicker__month-text--selected:hover,
.react-datepicker__month-text--in-selecting-range:hover,
.react-datepicker__month-text--in-range:hover,
.react-datepicker__quarter-text--selected:hover,
.react-datepicker__quarter-text--in-selecting-range:hover,
.react-datepicker__quarter-text--in-range:hover,
.react-datepicker__year-text--selected:hover,
.react-datepicker__year-text--in-selecting-range:hover,
.react-datepicker__year-text--in-range:hover {
  background-color: var(--primary);
}
.react-datepicker__day--keyboard-selected,
.react-datepicker__month-text--keyboard-selected,
.react-datepicker__quarter-text--keyboard-selected,
.react-datepicker__year-text--keyboard-selected {
  border-radius: 0.3rem;
  background-color: var(--primary-light);
  color: rgb(0, 0, 0);
}
.react-datepicker__day--keyboard-selected:hover,
.react-datepicker__month-text--keyboard-selected:hover,
.react-datepicker__quarter-text--keyboard-selected:hover,
.react-datepicker__year-text--keyboard-selected:hover {
  background-color: var(--primary);
  color: var(--text-inverse);
}
.react-datepicker__day--in-selecting-range:not(.react-datepicker__day--in-range,
.react-datepicker__month-text--in-range,
.react-datepicker__quarter-text--in-range,
.react-datepicker__year-text--in-range),
.react-datepicker__month-text--in-selecting-range:not(.react-datepicker__day--in-range,
.react-datepicker__month-text--in-range,
.react-datepicker__quarter-text--in-range,
.react-datepicker__year-text--in-range),
.react-datepicker__quarter-text--in-selecting-range:not(.react-datepicker__day--in-range,
.react-datepicker__month-text--in-range,
.react-datepicker__quarter-text--in-range,
.react-datepicker__year-text--in-range),
.react-datepicker__year-text--in-selecting-range:not(.react-datepicker__day--in-range,
.react-datepicker__month-text--in-range,
.react-datepicker__quarter-text--in-range,
.react-datepicker__year-text--in-range) {
  background-color: var(--primary-medium);
}
.react-datepicker__month--selecting-range .react-datepicker__day--in-range:not(.react-datepicker__day--in-selecting-range,
.react-datepicker__month-text--in-selecting-range,
.react-datepicker__quarter-text--in-selecting-range,
.react-datepicker__year-text--in-selecting-range), .react-datepicker__year--selecting-range .react-datepicker__day--in-range:not(.react-datepicker__day--in-selecting-range,
.react-datepicker__month-text--in-selecting-range,
.react-datepicker__quarter-text--in-selecting-range,
.react-datepicker__year-text--in-selecting-range),
.react-datepicker__month--selecting-range .react-datepicker__month-text--in-range:not(.react-datepicker__day--in-selecting-range,
.react-datepicker__month-text--in-selecting-range,
.react-datepicker__quarter-text--in-selecting-range,
.react-datepicker__year-text--in-selecting-range),
.react-datepicker__year--selecting-range .react-datepicker__month-text--in-range:not(.react-datepicker__day--in-selecting-range,
.react-datepicker__month-text--in-selecting-range,
.react-datepicker__quarter-text--in-selecting-range,
.react-datepicker__year-text--in-selecting-range),
.react-datepicker__month--selecting-range .react-datepicker__quarter-text--in-range:not(.react-datepicker__day--in-selecting-range,
.react-datepicker__month-text--in-selecting-range,
.react-datepicker__quarter-text--in-selecting-range,
.react-datepicker__year-text--in-selecting-range),
.react-datepicker__year--selecting-range .react-datepicker__quarter-text--in-range:not(.react-datepicker__day--in-selecting-range,
.react-datepicker__month-text--in-selecting-range,
.react-datepicker__quarter-text--in-selecting-range,
.react-datepicker__year-text--in-selecting-range),
.react-datepicker__month--selecting-range .react-datepicker__year-text--in-range:not(.react-datepicker__day--in-selecting-range,
.react-datepicker__month-text--in-selecting-range,
.react-datepicker__quarter-text--in-selecting-range,
.react-datepicker__year-text--in-selecting-range),
.react-datepicker__year--selecting-range .react-datepicker__year-text--in-range:not(.react-datepicker__day--in-selecting-range,
.react-datepicker__month-text--in-selecting-range,
.react-datepicker__quarter-text--in-selecting-range,
.react-datepicker__year-text--in-selecting-range) {
  background-color: var(--gray-8);
  color: var(--text);
}
.react-datepicker__day--disabled,
.react-datepicker__month-text--disabled,
.react-datepicker__quarter-text--disabled,
.react-datepicker__year-text--disabled {
  pointer-events: none;
  cursor: default;
  color: var(--gray-24);
}
.react-datepicker__day--disabled:hover,
.react-datepicker__month-text--disabled:hover,
.react-datepicker__quarter-text--disabled:hover,
.react-datepicker__year-text--disabled:hover {
  background-color: transparent;
}

.react-datepicker__input-container {
  position: relative;
  display: inline-block;
  width: 100%;
}
.react-datepicker__input-container .react-datepicker__calendar-icon {
  position: absolute;
  padding: 0.5rem;
  box-sizing: content-box;
}

.react-datepicker__view-calendar-icon input {
  padding: 6px 10px 5px 25px;
}

.react-datepicker__year-read-view,
.react-datepicker__month-read-view,
.react-datepicker__month-year-read-view {
  border: 1px solid transparent;
  border-radius: 0.3rem;
  position: relative;
}
.react-datepicker__year-read-view:hover,
.react-datepicker__month-read-view:hover,
.react-datepicker__month-year-read-view:hover {
  cursor: pointer;
}
.react-datepicker__year-read-view:hover .react-datepicker__year-read-view--down-arrow,
.react-datepicker__year-read-view:hover .react-datepicker__month-read-view--down-arrow,
.react-datepicker__month-read-view:hover .react-datepicker__year-read-view--down-arrow,
.react-datepicker__month-read-view:hover .react-datepicker__month-read-view--down-arrow,
.react-datepicker__month-year-read-view:hover .react-datepicker__year-read-view--down-arrow,
.react-datepicker__month-year-read-view:hover .react-datepicker__month-read-view--down-arrow {
  border-top-color: #b3b3b3;
}
.react-datepicker__year-read-view--down-arrow,
.react-datepicker__month-read-view--down-arrow,
.react-datepicker__month-year-read-view--down-arrow {
  transform: rotate(135deg);
  right: -16px;
  top: 0;
}

.react-datepicker__year-dropdown,
.react-datepicker__month-dropdown,
.react-datepicker__month-year-dropdown {
  background-color: var(--gray-8);
  position: absolute;
  width: 50%;
  left: 25%;
  top: 30px;
  z-index: 1;
  text-align: center;
  border-radius: 0.3rem;
  border: 1px solid var(--gray-16);
}
.react-datepicker__year-dropdown:hover,
.react-datepicker__month-dropdown:hover,
.react-datepicker__month-year-dropdown:hover {
  cursor: pointer;
}
.react-datepicker__year-dropdown--scrollable,
.react-datepicker__month-dropdown--scrollable,
.react-datepicker__month-year-dropdown--scrollable {
  height: 150px;
  overflow-y: scroll;
}

.react-datepicker__year-option,
.react-datepicker__month-option,
.react-datepicker__month-year-option {
  line-height: 20px;
  width: 100%;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.react-datepicker__year-option:first-of-type,
.react-datepicker__month-option:first-of-type,
.react-datepicker__month-year-option:first-of-type {
  border-top-left-radius: 0.3rem;
  border-top-right-radius: 0.3rem;
}
.react-datepicker__year-option:last-of-type,
.react-datepicker__month-option:last-of-type,
.react-datepicker__month-year-option:last-of-type {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  border-bottom-left-radius: 0.3rem;
  border-bottom-right-radius: 0.3rem;
}
.react-datepicker__year-option:hover,
.react-datepicker__month-option:hover,
.react-datepicker__month-year-option:hover {
  background-color: var(--gray-24);
}
.react-datepicker__year-option:hover .react-datepicker__navigation--years-upcoming,
.react-datepicker__month-option:hover .react-datepicker__navigation--years-upcoming,
.react-datepicker__month-year-option:hover .react-datepicker__navigation--years-upcoming {
  border-bottom-color: #b3b3b3;
}
.react-datepicker__year-option:hover .react-datepicker__navigation--years-previous,
.react-datepicker__month-option:hover .react-datepicker__navigation--years-previous,
.react-datepicker__month-year-option:hover .react-datepicker__navigation--years-previous {
  border-top-color: #b3b3b3;
}
.react-datepicker__year-option--selected,
.react-datepicker__month-option--selected,
.react-datepicker__month-year-option--selected {
  position: absolute;
  left: 15px;
}

.react-datepicker__close-icon {
  cursor: pointer;
  background-color: transparent;
  border: 0;
  outline: 0;
  padding: 0 6px 0 0;
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  display: table-cell;
  vertical-align: middle;
}
.react-datepicker__close-icon::after {
  cursor: pointer;
  background-color: var(--primary);
  color: var(--text);
  border-radius: 50%;
  height: 16px;
  width: 16px;
  padding: 2px;
  font-size: 12px;
  line-height: 1;
  text-align: center;
  display: table-cell;
  vertical-align: middle;
  content: "×";
}

.react-datepicker__today-button {
  background: var(--gray-8);
  border-top: 1px solid var(--gray-16);
  cursor: pointer;
  text-align: center;
  font-weight: bold;
  padding: 5px 0;
  clear: left;
}

.react-datepicker__portal {
  position: fixed;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.8);
  left: 0;
  top: 0;
  justify-content: center;
  align-items: center;
  display: flex;
  z-index: 2147483647;
}
.react-datepicker__portal .react-datepicker__day-name,
.react-datepicker__portal .react-datepicker__day,
.react-datepicker__portal .react-datepicker__time-name {
  width: 3rem;
  line-height: 3rem;
}
@media (max-width: 400px), (max-height: 550px) {
  .react-datepicker__portal .react-datepicker__day-name,
  .react-datepicker__portal .react-datepicker__day,
  .react-datepicker__portal .react-datepicker__time-name {
    width: 2rem;
    line-height: 2rem;
  }
}
.react-datepicker__portal .react-datepicker__current-month,
.react-datepicker__portal .react-datepicker-time__header {
  font-size: 1.44rem;
}

.react-datepicker__children-container {
  width: 13.8rem;
  margin: 0.4rem;
  padding-right: 0.2rem;
  padding-left: 0.2rem;
  height: auto;
}

.react-datepicker__aria-live {
  position: absolute;
  clip-path: circle(0);
  border: 0;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  width: 1px;
  white-space: nowrap;
}

.react-datepicker__calendar-icon {
  width: 1em;
  height: 1em;
  vertical-align: -0.125em;
}

.rdw-option-wrapper {
  border: 1px solid #F1F1F1;
  padding: 5px;
  min-width: 25px;
  height: 20px;
  border-radius: 2px;
  margin: 0 4px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  background: white;
  text-transform: capitalize;
}
.rdw-option-wrapper:hover {
  box-shadow: 1px 1px 0px #BFBDBD;
}
.rdw-option-wrapper:active {
  box-shadow: 1px 1px 0px #BFBDBD inset;
}
.rdw-option-active {
  box-shadow: 1px 1px 0px #BFBDBD inset;
}
.rdw-option-disabled {
  opacity: 0.3;
  cursor: default;
}

.rdw-dropdown-wrapper {
  height: 30px;
  background: white;
  cursor: pointer;
  border: 1px solid #F1F1F1;
  border-radius: 2px;
  margin: 0 3px;
  text-transform: capitalize;
  background: white;
}
.rdw-dropdown-wrapper:focus {
  outline: none;
}
.rdw-dropdown-wrapper:hover {
  box-shadow: 1px 1px 0px #BFBDBD;
  background-color: #FFFFFF;
}
.rdw-dropdown-wrapper:active {
  box-shadow: 1px 1px 0px #BFBDBD inset;
}
.rdw-dropdown-carettoopen {
  height: 0px;
  width: 0px;
  position: absolute;
  top: 35%;
  right: 10%;
  border-top: 6px solid black;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
}
.rdw-dropdown-carettoclose {
  height: 0px;
  width: 0px;
  position: absolute;
  top: 35%;
  right: 10%;
  border-bottom: 6px solid black;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
}
.rdw-dropdown-selectedtext {
  display: flex;
  position: relative;
  height: 100%;
  align-items: center;
  padding: 0 5px;
}
.rdw-dropdown-optionwrapper {
  z-index: 100;
  position: relative;
  border: 1px solid #F1F1F1;
  width: 98%;
  background: white;
  border-radius: 2px;
  margin: 0;
  padding: 0;
  max-height: 250px;
  overflow-y: scroll;
}
.rdw-dropdown-optionwrapper:hover {
  box-shadow: 1px 1px 0px #BFBDBD;
  background-color: #FFFFFF;
}

.rdw-dropdownoption-default {
  min-height: 25px;
  display: flex;
  align-items: center;
  padding: 0 5px;
}
.rdw-dropdownoption-highlighted {
  background: #F1F1F1;
}
.rdw-dropdownoption-active {
  background: #f5f5f5;
}
.rdw-dropdownoption-disabled {
  opacity: 0.3;
  cursor: default;
}

.rdw-inline-wrapper {
  display: flex;
  align-items: center;
  margin-bottom: 6px;
  flex-wrap: wrap
}
.rdw-inline-dropdown {
  width: 50px;
}
.rdw-inline-dropdownoption {
  height: 40px;
  display: flex;
  justify-content: center;
}

.rdw-block-wrapper {
  display: flex;
  align-items: center;
  margin-bottom: 6px;
  flex-wrap: wrap
}
.rdw-block-dropdown {
  width: 110px;
}

.rdw-fontsize-wrapper {
  display: flex;
  align-items: center;
  margin-bottom: 6px;
  flex-wrap: wrap
}
.rdw-fontsize-dropdown {
  min-width: 40px;
}
.rdw-fontsize-option {
  display: flex;
  justify-content: center;
}

.rdw-fontfamily-wrapper {
  display: flex;
  align-items: center;
  margin-bottom: 6px;
  flex-wrap: wrap
}
.rdw-fontfamily-dropdown {
  width: 115px;
}
.rdw-fontfamily-placeholder {
  white-space: nowrap;
  max-width: 90px;
  overflow: hidden;
  text-overflow: ellipsis;
}
.rdw-fontfamily-optionwrapper {
  width: 140px;
}

.rdw-list-wrapper {
  display: flex;
  align-items: center;
  margin-bottom: 6px;
  flex-wrap: wrap
}
.rdw-list-dropdown {
  width: 50px;
  z-index: 90;
}
.rdw-list-dropdownOption {
  height: 40px;
  display: flex;
  justify-content: center;
}

.rdw-text-align-wrapper {
  display: flex;
  align-items: center;
  margin-bottom: 6px;
  flex-wrap: wrap
}
.rdw-text-align-dropdown {
  width: 50px;
  z-index: 90;
}
.rdw-text-align-dropdownOption {
  height: 40px;
  display: flex;
  justify-content: center;
}
.rdw-right-aligned-block {
  text-align: right;
}
.rdw-left-aligned-block {
  text-align: left !important;
}
.rdw-center-aligned-block {
  text-align: center !important;
}
.rdw-justify-aligned-block {
  text-align: justify !important;
}
.rdw-right-aligned-block > div {
  display: inline-block;
}
.rdw-left-aligned-block > div {
  display: inline-block;
}
.rdw-center-aligned-block > div {
  display: inline-block;
}
.rdw-justify-aligned-block > div {
  display: inline-block;
}

.rdw-colorpicker-wrapper {
  display: flex;
  align-items: center;
  margin-bottom: 6px;
  position: relative;
  flex-wrap: wrap
}
.rdw-colorpicker-modal {
  position: absolute;
  top: 35px;
  left: 5px;
  display: flex;
  flex-direction: column;
  width: 175px;
  height: 175px;
  border: 1px solid #F1F1F1;
  padding: 15px;
  border-radius: 2px;
  z-index: 100;
  background: white;
  box-shadow: 3px 3px 5px #BFBDBD;
}
.rdw-colorpicker-modal-header {
  display: flex;
  padding-bottom: 5px;
}
.rdw-colorpicker-modal-style-label {
  font-size: 15px;
  width: 50%;
  text-align: center;
  cursor: pointer;
  padding: 0 10px 5px;
}
.rdw-colorpicker-modal-style-label-active {
  border-bottom: 2px solid #0a66b7;
}
.rdw-colorpicker-modal-options {
  margin: 5px auto;
  display: flex;
  width: 100%;
  height: 100%;
  flex-wrap: wrap;
  overflow: scroll;
}
.rdw-colorpicker-cube {
  width: 22px;
  height: 22px;
  border: 1px solid #F1F1F1;
}
.rdw-colorpicker-option {
  margin: 3px;
  padding: 0;
  min-height: 20px;
  border: none;
  width: 22px;
  height: 22px;
  min-width: 22px;
  box-shadow: 1px 2px 1px #BFBDBD inset;
}
.rdw-colorpicker-option:hover {
  box-shadow: 1px 2px 1px #BFBDBD;
}
.rdw-colorpicker-option:active {
  box-shadow: -1px -2px 1px #BFBDBD;
}
.rdw-colorpicker-option-active {
  box-shadow: 0px 0px 2px 2px #BFBDBD;
}

.rdw-link-wrapper {
  display: flex;
  align-items: center;
  margin-bottom: 6px;
  position: relative;
  flex-wrap: wrap
}
.rdw-link-dropdown {
  width: 50px;
}
.rdw-link-dropdownOption {
  height: 40px;
  display: flex;
  justify-content: center;
}
.rdw-link-dropdownPlaceholder {
  margin-left: 8px;
}
.rdw-link-modal {
  position: absolute;
  top: 35px;
  left: 5px;
  display: flex;
  flex-direction: column;
  width: 235px;
  height: 205px;
  border: 1px solid #F1F1F1;
  padding: 15px;
  border-radius: 2px;
  z-index: 100;
  background: white;
  box-shadow: 3px 3px 5px #BFBDBD;
}
.rdw-link-modal-label {
  font-size: 15px;
}
.rdw-link-modal-input {
  margin-top: 5px;
  border-radius: 2px;
  border: 1px solid #F1F1F1;
  height: 25px;
  margin-bottom: 15px;
  padding: 0 5px;
}
.rdw-link-modal-input:focus {
  outline: none;
}
.rdw-link-modal-buttonsection {
  margin: 0 auto;
}
.rdw-link-modal-target-option {
  margin-bottom: 20px;
}
.rdw-link-modal-target-option > span {
  margin-left: 5px;
}
.rdw-link-modal-btn {
  margin-left: 10px;
  width: 75px;
  height: 30px;
  border: 1px solid #F1F1F1;
  border-radius: 2px;
  cursor: pointer;
  background: white;
  text-transform: capitalize;
}
.rdw-link-modal-btn:hover {
  box-shadow: 1px 1px 0px #BFBDBD;
}
.rdw-link-modal-btn:active {
  box-shadow: 1px 1px 0px #BFBDBD inset;
}
.rdw-link-modal-btn:focus {
  outline: none !important;
}
.rdw-link-modal-btn:disabled {
  background: #ece9e9;
}
.rdw-link-dropdownoption {
  height: 40px;
  display: flex;
  justify-content: center;
}
.rdw-history-dropdown {
  width: 50px;
}

.rdw-embedded-wrapper {
  display: flex;
  align-items: center;
  margin-bottom: 6px;
  position: relative;
  flex-wrap: wrap
}
.rdw-embedded-modal {
  position: absolute;
  top: 35px;
  left: 5px;
  display: flex;
  flex-direction: column;
  width: 235px;
  height: 180px;
  border: 1px solid #F1F1F1;
  padding: 15px;
  border-radius: 2px;
  z-index: 100;
  background: white;
  justify-content: space-between;
  box-shadow: 3px 3px 5px #BFBDBD;
}
.rdw-embedded-modal-header {
  font-size: 15px;
  display: flex;
}
.rdw-embedded-modal-header-option {
  width: 50%;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.rdw-embedded-modal-header-label {
  width: 95px;
  border: 1px solid #f1f1f1;
  margin-top: 5px;
  background: #6EB8D4;
  border-bottom: 2px solid #0a66b7;
}
.rdw-embedded-modal-link-section {
  display: flex;
  flex-direction: column;
}
.rdw-embedded-modal-link-input {
  width: 88%;
  height: 35px;
  margin: 10px 0;
  border: 1px solid #F1F1F1;
  border-radius: 2px;
  font-size: 15px;
  padding: 0 5px;
}
.rdw-embedded-modal-link-input-wrapper {
  display: flex;
  align-items: center;
}
.rdw-embedded-modal-link-input:focus {
  outline: none;
}
.rdw-embedded-modal-btn-section {
  display: flex;
  justify-content: center;
}
.rdw-embedded-modal-btn {
  margin: 0 3px;
  width: 75px;
  height: 30px;
  border: 1px solid #F1F1F1;
  border-radius: 2px;
  cursor: pointer;
  background: white;
  text-transform: capitalize;
}
.rdw-embedded-modal-btn:hover {
  box-shadow: 1px 1px 0px #BFBDBD;
}
.rdw-embedded-modal-btn:active {
  box-shadow: 1px 1px 0px #BFBDBD inset;
}
.rdw-embedded-modal-btn:focus {
  outline: none !important;
}
.rdw-embedded-modal-btn:disabled {
  background: #ece9e9;
}
.rdw-embedded-modal-size {
  align-items: center;
  display: flex;
  margin: 8px 0;
  justify-content: space-between;
}
.rdw-embedded-modal-size-input {
  width: 80%;
  height: 20px;
  border: 1px solid #F1F1F1;
  border-radius: 2px;
  font-size: 12px;
}
.rdw-embedded-modal-size-input:focus {
  outline: none;
}

.rdw-emoji-wrapper {
  display: flex;
  align-items: center;
  margin-bottom: 6px;
  position: relative;
  flex-wrap: wrap
}
.rdw-emoji-modal {
  overflow: auto;
  position: absolute;
  top: 35px;
  left: 5px;
  display: flex;
  flex-wrap: wrap;
  width: 235px;
  height: 180px;
  border: 1px solid #F1F1F1;
  padding: 15px;
  border-radius: 2px;
  z-index: 100;
  background: white;
  box-shadow: 3px 3px 5px #BFBDBD;
}
.rdw-emoji-icon {
  margin: 2.5px;
  height: 24px;
  width: 24px;
  cursor: pointer;
  font-size: 22px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.rdw-spinner {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
}
.rdw-spinner > div {
  width: 12px;
  height: 12px;
  background-color: #333;

  border-radius: 100%;
  display: inline-block;
  -webkit-animation: sk-bouncedelay 1.4s infinite ease-in-out both;
  animation: sk-bouncedelay 1.4s infinite ease-in-out both;
}
.rdw-spinner .rdw-bounce1 {
  -webkit-animation-delay: -0.32s;
  animation-delay: -0.32s;
}
.rdw-spinner .rdw-bounce2 {
  -webkit-animation-delay: -0.16s;
  animation-delay: -0.16s;
}
@-webkit-keyframes sk-bouncedelay {
  0%, 80%, 100% { -webkit-transform: scale(0) }
  40% { -webkit-transform: scale(1.0) }
}
@keyframes sk-bouncedelay {
  0%, 80%, 100% {
    -webkit-transform: scale(0);
    transform: scale(0);
  } 40% {
    -webkit-transform: scale(1.0);
    transform: scale(1.0);
  }
}

.rdw-image-wrapper {
  display: flex;
  align-items: center;
  margin-bottom: 6px;
  position: relative;
  flex-wrap: wrap
}
.rdw-image-modal {
  position: absolute;
  top: 35px;
  left: 5px;
  display: flex;
  flex-direction: column;
  width: 235px;
  border: 1px solid #F1F1F1;
  padding: 15px;
  border-radius: 2px;
  z-index: 100;
  background: white;
  box-shadow: 3px 3px 5px #BFBDBD;
}
.rdw-image-modal-header {
  font-size: 15px;
  margin: 10px 0;
  display: flex;
}
.rdw-image-modal-header-option {
  width: 50%;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.rdw-image-modal-header-label {
  width: 80px;
  background: #f1f1f1;
  border: 1px solid #f1f1f1;
  margin-top: 5px;
}
.rdw-image-modal-header-label-highlighted {
  background: #6EB8D4;
  border-bottom: 2px solid #0a66b7;
}
.rdw-image-modal-upload-option {
  width: 100%;
  color: gray;
  cursor: pointer;
  display: flex;
  border: none;
  font-size: 15px;
  align-items: center;
  justify-content: center;
  background-color: #f1f1f1;
  outline: 2px dashed gray;
  outline-offset: -10px;
  margin: 10px 0;
  padding: 9px 0;
}
.rdw-image-modal-upload-option-highlighted {
  outline: 2px dashed #0a66b7;
}
.rdw-image-modal-upload-option-label {
  cursor: pointer;
  height: 100%;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 15px;
}
.rdw-image-modal-upload-option-label span{
  padding: 0 20px;
}
.rdw-image-modal-upload-option-image-preview {
  max-width: 100%;
  max-height: 200px;
}
.rdw-image-modal-upload-option-input {
	width: 0.1px;
	height: 0.1px;
	opacity: 0;
	overflow: hidden;
	position: absolute;
	z-index: -1;
}
.rdw-image-modal-url-section {
  display: flex;
  align-items: center;
}
.rdw-image-modal-url-input {
  width: 90%;
  height: 35px;
  margin: 15px 0 12px;
  border: 1px solid #F1F1F1;
  border-radius: 2px;
  font-size: 15px;
  padding: 0 5px;
}
.rdw-image-modal-btn-section {
  margin: 10px auto 0;
}
.rdw-image-modal-url-input:focus {
  outline: none;
}
.rdw-image-modal-btn {
  margin: 0 5px;
  width: 75px;
  height: 30px;
  border: 1px solid #F1F1F1;
  border-radius: 2px;
  cursor: pointer;
  background: white;
  text-transform: capitalize;
}
.rdw-image-modal-btn:hover {
  box-shadow: 1px 1px 0px #BFBDBD;
}
.rdw-image-modal-btn:active {
  box-shadow: 1px 1px 0px #BFBDBD inset;
}
.rdw-image-modal-btn:focus {
  outline: none !important;
}
.rdw-image-modal-btn:disabled {
  background: #ece9e9;
}
.rdw-image-modal-spinner {
  position: absolute;
  top: -3px;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.5;
}
.rdw-image-modal-alt-input {
  width: 70%;
  height: 20px;
  border: 1px solid #F1F1F1;
  border-radius: 2px;
  font-size: 12px;
  margin-left: 5px;
}
.rdw-image-modal-alt-input:focus {
  outline: none;
}
.rdw-image-modal-alt-lbl {
  font-size: 12px;
}
.rdw-image-modal-size {
  align-items: center;
  display: flex;
  margin: 8px 0;
  justify-content: space-between;
}
.rdw-image-modal-size-input {
  width: 40%;
  height: 20px;
  border: 1px solid #F1F1F1;
  border-radius: 2px;
  font-size: 12px;
}
.rdw-image-modal-size-input:focus {
  outline: none;
}
.rdw-image-mandatory-sign {
  color: red;
  margin-left: 3px;
  margin-right: 3px;
}

.rdw-remove-wrapper {
  display: flex;
  align-items: center;
  margin-bottom: 6px;
  position: relative;
  flex-wrap: wrap
}

.rdw-history-wrapper {
  display: flex;
  align-items: center;
  margin-bottom: 6px;
  flex-wrap: wrap
}
.rdw-history-dropdownoption {
  height: 40px;
  display: flex;
  justify-content: center;
}
.rdw-history-dropdown {
  width: 50px;
}

.rdw-link-decorator-wrapper {
  position: relative;
}
.rdw-link-decorator-icon {
  position: absolute;
  left: 40%;
  top: 0;
  cursor: pointer;
  background-color: white;
}

.rdw-mention-link {
  text-decoration: none;
  color: #1236ff;
  background-color: #f0fbff;
  padding: 1px 2px;
  border-radius: 2px;
}

.rdw-suggestion-wrapper {
  position: relative;
}
.rdw-suggestion-dropdown {
  position: absolute;
  display: flex;
  flex-direction: column;
  border: 1px solid #F1F1F1;
  min-width: 100px;
  max-height: 150px;
  overflow: auto;
  background: white;
  z-index: 100;
}
.rdw-suggestion-option {
  padding: 7px 5px;
  border-bottom: 1px solid #f1f1f1;
}
.rdw-suggestion-option-active {
  background-color: #F1F1F1;
}

.rdw-hashtag-link {
  text-decoration: none;
  color: #1236ff;
  background-color: #f0fbff;
  padding: 1px 2px;
  border-radius: 2px;
}

.rdw-image-alignment-options-popup {
  position: absolute;
  background: white;
  display: flex;
  padding: 5px 2px;
  border-radius: 2px;
  border: 1px solid #F1F1F1;
  width: 105px;
  cursor: pointer;
  z-index: 100;
}
.rdw-alignment-option-left {
  justify-content: flex-start;
}
.rdw-image-alignment-option {
  height: 15px;
  width: 15px;
  min-width: 15px;
}
.rdw-image-alignment {
  position: relative;
}
.rdw-image-imagewrapper {
  position: relative;
}
.rdw-image-center {
  display: flex;
  justify-content: center;
}
.rdw-image-left {
  display: flex;
}
.rdw-image-right {
  display: flex;
  justify-content: flex-end;
}
.rdw-image-alignment-options-popup-right {
  right: 0;
}

.rdw-editor-main {
  height: 100%;
  overflow: auto;
  box-sizing: border-box;
  padding: 6px 5px 0;
  border-radius: 2px;
  border: 1px solid #F1F1F1;
}

.rdw-editor-toolbar {
  padding: 6px 5px 0;
  border-radius: 2px;
  border: 1px solid #F1F1F1;
  display: flex;
  justify-content: flex-start;
  background: white;
  flex-wrap: wrap;
  font-size: 15px;
  margin-bottom: 5px;
  user-select: none;
}
.public-DraftStyleDefault-block {
  margin: 1em 0;
}
.rdw-editor-wrapper:focus {
  outline: none;
}
.rdw-editor-wrapper {
  box-sizing: content-box;
}
.rdw-editor-main blockquote {
  border-left: 5px solid #f1f1f1;
  padding-left: 5px;
}
.rdw-editor-main pre {
  background: #f1f1f1;
  border-radius: 3px;
  padding: 1px 10px;
}
/**
 * Draft v0.9.1
 *
 * Copyright (c) 2013-present, Facebook, Inc.
 * All rights reserved.
 *
 * This source code is licensed under the BSD-style license found in the
 * LICENSE file in the root directory of this source tree. An additional grant
 * of patent rights can be found in the PATENTS file in the same directory.
 */
.DraftEditor-editorContainer,.DraftEditor-root,.public-DraftEditor-content{height:inherit;text-align:initial}.public-DraftEditor-content[contenteditable=true]{-webkit-user-modify:read-write-plaintext-only}.DraftEditor-root{position:relative}.DraftEditor-editorContainer{background-color:rgba(255,255,255,0);border-left:.1px solid transparent;position:relative;z-index:1}.public-DraftEditor-block{position:relative}.DraftEditor-alignLeft .public-DraftStyleDefault-block{text-align:left}.DraftEditor-alignLeft .public-DraftEditorPlaceholder-root{left:0;text-align:left}.DraftEditor-alignCenter .public-DraftStyleDefault-block{text-align:center}.DraftEditor-alignCenter .public-DraftEditorPlaceholder-root{margin:0 auto;text-align:center;width:100%}.DraftEditor-alignRight .public-DraftStyleDefault-block{text-align:right}.DraftEditor-alignRight .public-DraftEditorPlaceholder-root{right:0;text-align:right}.public-DraftEditorPlaceholder-root{color:#9197a3;position:absolute;z-index:0}.public-DraftEditorPlaceholder-hasFocus{color:#bdc1c9}.DraftEditorPlaceholder-hidden{display:none}.public-DraftStyleDefault-block{position:relative;white-space:pre-wrap}.public-DraftStyleDefault-ltr{direction:ltr;text-align:left}.public-DraftStyleDefault-rtl{direction:rtl;text-align:right}.public-DraftStyleDefault-listLTR{direction:ltr}.public-DraftStyleDefault-listRTL{direction:rtl}.public-DraftStyleDefault-ol,.public-DraftStyleDefault-ul{margin:16px 0;padding:0}.public-DraftStyleDefault-depth0.public-DraftStyleDefault-listLTR{margin-left:1.5em}.public-DraftStyleDefault-depth0.public-DraftStyleDefault-listRTL{margin-right:1.5em}.public-DraftStyleDefault-depth1.public-DraftStyleDefault-listLTR{margin-left:3em}.public-DraftStyleDefault-depth1.public-DraftStyleDefault-listRTL{margin-right:3em}.public-DraftStyleDefault-depth2.public-DraftStyleDefault-listLTR{margin-left:4.5em}.public-DraftStyleDefault-depth2.public-DraftStyleDefault-listRTL{margin-right:4.5em}.public-DraftStyleDefault-depth3.public-DraftStyleDefault-listLTR{margin-left:6em}.public-DraftStyleDefault-depth3.public-DraftStyleDefault-listRTL{margin-right:6em}.public-DraftStyleDefault-depth4.public-DraftStyleDefault-listLTR{margin-left:7.5em}.public-DraftStyleDefault-depth4.public-DraftStyleDefault-listRTL{margin-right:7.5em}.public-DraftStyleDefault-unorderedListItem{list-style-type:square;position:relative}.public-DraftStyleDefault-unorderedListItem.public-DraftStyleDefault-depth0{list-style-type:disc}.public-DraftStyleDefault-unorderedListItem.public-DraftStyleDefault-depth1{list-style-type:circle}.public-DraftStyleDefault-orderedListItem{list-style-type:none;position:relative}.public-DraftStyleDefault-orderedListItem.public-DraftStyleDefault-listLTR:before{left:-36px;position:absolute;text-align:right;width:30px}.public-DraftStyleDefault-orderedListItem.public-DraftStyleDefault-listRTL:before{position:absolute;right:-36px;text-align:left;width:30px}.public-DraftStyleDefault-orderedListItem:before{content:counter(ol0) ". ";counter-increment:ol0}.public-DraftStyleDefault-orderedListItem.public-DraftStyleDefault-depth1:before{content:counter(ol1) ". ";counter-increment:ol1}.public-DraftStyleDefault-orderedListItem.public-DraftStyleDefault-depth2:before{content:counter(ol2) ". ";counter-increment:ol2}.public-DraftStyleDefault-orderedListItem.public-DraftStyleDefault-depth3:before{content:counter(ol3) ". ";counter-increment:ol3}.public-DraftStyleDefault-orderedListItem.public-DraftStyleDefault-depth4:before{content:counter(ol4) ". ";counter-increment:ol4}.public-DraftStyleDefault-depth0.public-DraftStyleDefault-reset{counter-reset:ol0}.public-DraftStyleDefault-depth1.public-DraftStyleDefault-reset{counter-reset:ol1}.public-DraftStyleDefault-depth2.public-DraftStyleDefault-reset{counter-reset:ol2}.public-DraftStyleDefault-depth3.public-DraftStyleDefault-reset{counter-reset:ol3}.public-DraftStyleDefault-depth4.public-DraftStyleDefault-reset{counter-reset:ol4}


/*# sourceMappingURL=react-draft-wysiwyg.css.map*/

.react-international-phone-country-selector {
    position: relative
}

.react-international-phone-country-selector-button {
    display: flex;
    height: var(--react-international-phone-height, 36px);
    box-sizing: border-box;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: 1px solid var(--react-international-phone-country-selector-border-color, var(--react-international-phone-border-color, gainsboro));
    margin: 0;
    appearance: button;
    -webkit-appearance: button;
    background-color: var(--react-international-phone-country-selector-background-color, var(--react-international-phone-background-color, white));
    cursor: pointer;
    text-transform: none;
    user-select: none
}

.react-international-phone-country-selector-button:hover {
    background-color: var(--react-international-phone-country-selector-background-color-hover, whitesmoke)
}

.react-international-phone-country-selector-button--hide-dropdown {
    cursor: auto
}

.react-international-phone-country-selector-button--hide-dropdown:hover {
    background-color: transparent
}

.react-international-phone-country-selector-button__button-content {
    display: flex;
    align-items: center;
    justify-content: center
}

.react-international-phone-country-selector-button__flag-emoji {
    margin: 0 4px
}

.react-international-phone-country-selector-button__flag-emoji--disabled {
    opacity: .75
}

.react-international-phone-country-selector-button__dropdown-arrow {
    border-top: var(--react-international-phone-country-selector-arrow-size, 4px) solid var(--react-international-phone-country-selector-arrow-color, #777);
    border-right: var(--react-international-phone-country-selector-arrow-size, 4px) solid transparent;
    border-left: var(--react-international-phone-country-selector-arrow-size, 4px) solid transparent;
    margin-right: 4px;
    transition: all .1s ease-out
}

.react-international-phone-country-selector-button__dropdown-arrow--active {
    transform: rotateX(180deg)
}

.react-international-phone-country-selector-button__dropdown-arrow--disabled {
    border-top-color: var(--react-international-phone-disabled-country-selector-arrow-color, #999)
}

.react-international-phone-country-selector-button--disabled,
.react-international-phone-country-selector-button--disabled:hover {
    background-color: var(--react-international-phone-disabled-country-selector-background-color, var(--react-international-phone-disabled-background-color, whitesmoke))
}

.react-international-phone-country-selector-button--disabled {
    cursor: auto
}

.react-international-phone-flag-emoji {
    width: var(--react-international-phone-flag-width, 24px);
    height: var(--react-international-phone-flag-height, 24px);
    box-sizing: border-box
}

.react-international-phone-country-selector-dropdown {
    position: absolute;
    z-index: 1;
    top: var(--react-international-phone-dropdown-top, 44px);
    left: var(--react-international-phone-dropdown-left, 0);
    display: flex;
    width: 300px;
    max-height: 200px;
    flex-direction: column;
    padding: 4px 0;
    margin: 0;
    background-color: var(--react-international-phone-dropdown-item-background-color, var(--react-international-phone-background-color, white));
    box-shadow: var(--react-international-phone-dropdown-shadow, 2px 2px 16px rgba(0, 0, 0, .25));
    color: var(--react-international-phone-dropdown-item-text-color, var(--react-international-phone-text-color, #222));
    list-style: none;
    overflow-y: scroll
}

.react-international-phone-country-selector-dropdown__preferred-list-divider {
    height: 1px;
    border: none;
    margin: var(--react-international-phone-dropdown-preferred-list-divider-margin, 0);
    background: var(--react-international-phone-dropdown-preferred-list-divider-color, var(--react-international-phone-border-color, gainsboro))
}

.react-international-phone-country-selector-dropdown__list-item {
    display: flex;
    min-height: var(--react-international-phone-dropdown-item-height, 28px);
    box-sizing: border-box;
    align-items: center;
    padding: 2px 8px
}

.react-international-phone-country-selector-dropdown__list-item-flag-emoji {
    margin-right: 8px
}

.react-international-phone-country-selector-dropdown__list-item-country-name {
    overflow: hidden;
    margin-right: 8px;
    font-size: var(--react-international-phone-dropdown-item-font-size, 14px);
    text-overflow: ellipsis;
    white-space: nowrap
}

.react-international-phone-country-selector-dropdown__list-item-dial-code {
    color: var(--react-international-phone-dropdown-item-dial-code-color, gray);
    font-size: var(--react-international-phone-dropdown-item-font-size, 14px)
}

.react-international-phone-country-selector-dropdown__list-item:hover {
    background-color: var(--react-international-phone-selected-dropdown-item-background-color, var(--react-international-phone-selected-dropdown-item-background-color, whitesmoke));
    cursor: pointer
}

.react-international-phone-country-selector-dropdown__list-item--selected,
.react-international-phone-country-selector-dropdown__list-item--focused {
    background-color: var(--react-international-phone-selected-dropdown-item-background-color, whitesmoke);
    color: var(--react-international-phone-selected-dropdown-item-text-color, var(--react-international-phone-text-color, #222))
}

.react-international-phone-country-selector-dropdown__list-item--selected .react-international-phone-country-selector-dropdown__list-item-dial-code,
.react-international-phone-country-selector-dropdown__list-item--focused .react-international-phone-country-selector-dropdown__list-item-dial-code {
    color: var(--react-international-phone-selected-dropdown-item-dial-code-color, var(--react-international-phone-dropdown-item-dial-code-color, gray))
}

.react-international-phone-country-selector-dropdown__list-item--focused {
    background-color: var(--react-international-phone-selected-dropdown-item-background-color, var(--react-international-phone-selected-dropdown-item-background-color, whitesmoke))
}

.react-international-phone-dial-code-preview {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 8px;
    border: 1px solid var(--react-international-phone-dial-code-preview-border-color, var(--react-international-phone-border-color, gainsboro));
    margin-right: -1px;
    background-color: var(--react-international-phone-dial-code-preview-background-color, var(--react-international-phone-background-color, white));
    color: var(--react-international-phone-dial-code-preview-text-color, var(--react-international-phone-text-color, #222));
    font-size: var(--react-international-phone-dial-code-preview-font-size, var(--react-international-phone-font-size, 13px))
}

.react-international-phone-dial-code-preview--disabled {
    background-color: var(--react-international-phone-dial-code-preview-disabled-background-color, var(--react-international-phone-disabled-background-color, whitesmoke));
    color: var(--react-international-phone-dial-code-preview-disabled-text-color, var(--react-international-phone-disabled-text-color, #666))
}

.react-international-phone-input-container {
    display: flex
}

.react-international-phone-input-container .react-international-phone-country-selector-button {
    border-radius: var(--react-international-phone-border-radius, 4px);
    margin-right: -1px;
    border-bottom-right-radius: 0;
    border-top-right-radius: 0
}

.react-international-phone-input-container .react-international-phone-input {
    overflow: visible;
    height: var(--react-international-phone-height, 36px);
    box-sizing: border-box;
    padding: 0 8px;
    border: 1px solid var(--react-international-phone-border-color, gainsboro);
    border-radius: var(--react-international-phone-border-radius, 4px);
    margin: 0;
    background-color: var(--react-international-phone-background-color, white);
    border-bottom-left-radius: 0;
    border-top-left-radius: 0;
    color: var(--react-international-phone-text-color, #222);
    font-family: inherit;
    font-size: var(--react-international-phone-font-size, 13px)
}

.react-international-phone-input-container .react-international-phone-input:focus {
    outline: none
}

.react-international-phone-input-container .react-international-phone-input--disabled {
    background-color: var(--react-international-phone-disabled-background-color, whitesmoke);
    color: var(--react-international-phone-disabled-text-color, #666)
}

/*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */

/**
 * 1. Set default font family to sans-serif.
 * 2. Prevent iOS and IE text size adjust after device orientation change,
 *    without disabling user zoom.
 */

html {
  font-family: sans-serif; /* 1 */
  -ms-text-size-adjust: 100%; /* 2 */
  -webkit-text-size-adjust: 100%; /* 2 */
}

/**
 * Remove default margin.
 */

body {
  margin: 0;
}

/* HTML5 display definitions
   ========================================================================== */

/**
 * Correct `block` display not defined for any HTML5 element in IE 8/9.
 * Correct `block` display not defined for `details` or `summary` in IE 10/11
 * and Firefox.
 * Correct `block` display not defined for `main` in IE 11.
 */

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section {
  display: block;
}

/**
 * 1. Correct `inline-block` display not defined in IE 8/9.
 * 2. Normalize vertical alignment of `progress` in Chrome, Firefox, and Opera.
 */

audio,
canvas,
progress,
video {
  display: inline-block; /* 1 */
  vertical-align: baseline; /* 2 */
}

/**
 * Prevent modern browsers from displaying `audio` without controls.
 * Remove excess height in iOS 5 devices.
 */

audio:not([controls]) {
  display: none;
  height: 0;
}

/**
 * Address `[hidden]` styling not present in IE 8/9/10.
 * Hide the `template` element in IE 8/9/10/11, Safari, and Firefox < 22.
 */

[hidden],
template {
  display: none;
}

/* Links
   ========================================================================== */

/**
 * Remove the gray background color from active links in IE 10.
 */

a {
  background-color: transparent;
}

/**
 * Improve readability of focused elements when they are also in an
 * active/hover state.
 */

a:active,
a:hover {
  outline: 0;
}

/* Text-level semantics
   ========================================================================== */

/**
 * Address styling not present in IE 8/9/10/11, Safari, and Chrome.
 */

abbr[title] {
  border-bottom: 1px dotted;
}

/**
 * Address style set to `bolder` in Firefox 4+, Safari, and Chrome.
 */

b,
strong {
  font-weight: bold;
}

/**
 * Address styling not present in Safari and Chrome.
 */

dfn {
  font-style: italic;
}

/**
 * Address variable `h1` font-size and margin within `section` and `article`
 * contexts in Firefox 4+, Safari, and Chrome.
 */

h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/**
 * Address styling not present in IE 8/9.
 */

mark {
  background: #ff0;
  color: #000;
}

/**
 * Address inconsistent and variable font size in all browsers.
 */

small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` affecting `line-height` in all browsers.
 */

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

/* Embedded content
   ========================================================================== */

/**
 * Remove border when inside `a` element in IE 8/9/10.
 */

img {
  border: 0;
}

/**
 * Correct overflow not hidden in IE 9/10/11.
 */

svg:not(:root) {
  overflow: hidden;
}

/* Grouping content
   ========================================================================== */

/**
 * Address margin not present in IE 8/9 and Safari.
 */

figure {
  margin: 1em 40px;
}

/**
 * Address differences between Firefox and other browsers.
 */

hr {
  box-sizing: content-box;
  height: 0;
}

/**
 * Contain overflow in all browsers.
 */

pre {
  overflow: auto;
}

/**
 * Address odd `em`-unit font size rendering in all browsers.
 */

code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}

/* Forms
   ========================================================================== */

/**
 * Known limitation: by default, Chrome and Safari on OS X allow very limited
 * styling of `select`, unless a `border` property is set.
 */

/**
 * 1. Correct color not being inherited.
 *    Known issue: affects color of disabled elements.
 * 2. Correct font properties not being inherited.
 * 3. Address margins set differently in Firefox 4+, Safari, and Chrome.
 */

button,
input,
optgroup,
select,
textarea {
  color: inherit; /* 1 */
  font: inherit; /* 2 */
  margin: 0; /* 3 */
}

/**
 * Address `overflow` set to `hidden` in IE 8/9/10/11.
 */

button {
  overflow: visible;
}

/**
 * Address inconsistent `text-transform` inheritance for `button` and `select`.
 * All other form control elements do not inherit `text-transform` values.
 * Correct `button` style inheritance in Firefox, IE 8/9/10/11, and Opera.
 * Correct `select` style inheritance in Firefox.
 */

button,
select {
  text-transform: none;
}

/**
 * 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
 *    and `video` controls.
 * 2. Correct inability to style clickable `input` types in iOS.
 * 3. Improve usability and consistency of cursor style between image-type
 *    `input` and others.
 */

button,
html input[type="button"], /* 1 */
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button; /* 2 */
  cursor: pointer; /* 3 */
}

/**
 * Re-set default cursor for disabled elements.
 */

button[disabled],
html input[disabled] {
  cursor: default;
}

/**
 * Remove inner padding and border in Firefox 4+.
 */

button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

/**
 * Address Firefox 4+ setting `line-height` on `input` using `!important` in
 * the UA stylesheet.
 */

input {
  line-height: normal;
}

/**
 * It's recommended that you don't attempt to style these elements.
 * Firefox's implementation doesn't respect box-sizing, padding, or width.
 *
 * 1. Address box sizing set to `content-box` in IE 8/9/10.
 * 2. Remove excess padding in IE 8/9/10.
 */

input[type="checkbox"],
input[type="radio"] {
  box-sizing: border-box; /* 1 */
  padding: 0; /* 2 */
}

/**
 * Fix the cursor style for Chrome's increment/decrement buttons. For certain
 * `font-size` values of the `input`, it causes the cursor style of the
 * decrement button to change from `default` to `text`.
 */

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Address `appearance` set to `searchfield` in Safari and Chrome.
 * 2. Address `box-sizing` set to `border-box` in Safari and Chrome.
 */

input[type="search"] {
  -webkit-appearance: textfield; /* 1 */
  box-sizing: content-box; /* 2 */
}

/**
 * Remove inner padding and search cancel button in Safari and Chrome on OS X.
 * Safari (but not Chrome) clips the cancel button when the search input has
 * padding (and `textfield` appearance).
 */

input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * Define consistent border, margin, and padding.
 */

fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}

/**
 * 1. Correct `color` not being inherited in IE 8/9/10/11.
 * 2. Remove padding so people aren't caught out if they zero out fieldsets.
 */

legend {
  border: 0; /* 1 */
  padding: 0; /* 2 */
}

/**
 * Remove default vertical scrollbar in IE 8/9/10/11.
 */

textarea {
  overflow: auto;
}

/**
 * Don't inherit the `font-weight` (applied by a rule above).
 * NOTE: the default cannot safely be changed in Chrome and Safari on OS X.
 */

optgroup {
  font-weight: bold;
}

/* Tables
   ========================================================================== */

/**
 * Remove most spacing between table cells.
 */

table {
  border-collapse: collapse;
  border-spacing: 0;
}

td,
th {
  padding: 0;
}

.react-vis-magic-css-import-rule {
    display: inherit;
  }
  .rv-treemap {
    font-size: 12px;
    position: relative;
  }
  .rv-treemap__leaf {
    overflow: hidden;
    position: absolute;
  }
  .rv-treemap__leaf--circle {
    align-items: center;
    border-radius: 100%;
    display: flex;
    justify-content: center;
  }
  .rv-treemap__leaf__content {
    overflow: hidden;
    padding: 10px;
    text-overflow: ellipsis;
  }
  .rv-xy-plot {
    color: #c3c3c3;
    position: relative;
  }
  .rv-xy-plot canvas {
    pointer-events: none;
  }
  .rv-xy-plot .rv-xy-canvas {
    pointer-events: none;
    position: absolute;
  }
  .rv-xy-plot__inner {
    display: block;
  }
  .rv-xy-plot__axis__line {
    fill: none;
    stroke-width: 2px;
    stroke: #e6e6e9;
  }
  .rv-xy-plot__axis__tick__line {
    stroke: #e6e6e9;
  }
  .rv-xy-plot__axis__tick__text {
    fill: #6b6b76;
    font-size: 11px;
  }
  .rv-xy-plot__axis__title text {
    fill: #6b6b76;
    font-size: 11px;
  }
  .rv-xy-plot__grid-lines__line {
    stroke: #e6e6e9;
  }
  .rv-xy-plot__circular-grid-lines__line {
    fill-opacity: 0;
    stroke: #e6e6e9;
  }
  .rv-xy-plot__series,
  .rv-xy-plot__series path {
    pointer-events: all;
  }
  .rv-xy-plot__series--line {
    fill: none;
    stroke: #000;
    stroke-width: 2px;
  }
  .rv-crosshair {
    position: absolute;
    font-size: 11px;
    pointer-events: none;
  }
  .rv-crosshair__line {
    background: #47d3d9;
    width: 1px;
  }
  .rv-crosshair__inner {
    position: absolute;
    text-align: left;
    top: 0;
  }
  .rv-crosshair__inner__content {
    border-radius: 4px;
    background: #3a3a48;
    color: #fff;
    font-size: 12px;
    padding: 7px 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
  }
  .rv-crosshair__inner--left {
    right: 4px;
  }
  .rv-crosshair__inner--right {
    left: 4px;
  }
  .rv-crosshair__title {
    font-weight: bold;
    white-space: nowrap;
  }
  .rv-crosshair__item {
    white-space: nowrap;
  }
  .rv-hint {
    position: absolute;
    pointer-events: none;
  }
  .rv-hint__content {
    border-radius: 4px;
    padding: 7px 10px;
    font-size: 12px;
    background: #3a3a48;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    color: #fff;
    text-align: left;
    white-space: nowrap;
  }
  .rv-discrete-color-legend {
    box-sizing: border-box;
    overflow-y: auto;
    font-size: 12px;
  }
  .rv-discrete-color-legend.horizontal {
    white-space: nowrap;
  }
  .rv-discrete-color-legend-item {
    color: #3a3a48;
    border-radius: 1px;
    padding: 9px 10px;
  }
  .rv-discrete-color-legend-item.horizontal {
    display: inline-block;
  }
  .rv-discrete-color-legend-item.horizontal
    .rv-discrete-color-legend-item__title {
    margin-left: 0;
    display: block;
  }
  .rv-discrete-color-legend-item__color {
    background: #dcdcdc;
    display: inline-block;
    height: 2px;
    vertical-align: middle;
    width: 14px;
  }
  .rv-discrete-color-legend-item__title {
    margin-left: 10px;
  }
  .rv-discrete-color-legend-item.disabled {
    color: #b8b8b8;
  }
  .rv-discrete-color-legend-item.clickable {
    cursor: pointer;
  }
  .rv-discrete-color-legend-item.clickable:hover {
    background: #f9f9f9;
  }
  .rv-search-wrapper {
    display: flex;
    flex-direction: column;
  }
  .rv-search-wrapper__form {
    flex: 0;
  }
  .rv-search-wrapper__form__input {
    width: 100%;
    color: #a6a6a5;
    border: 1px solid #e5e5e4;
    padding: 7px 10px;
    font-size: 12px;
    box-sizing: border-box;
    border-radius: 2px;
    margin: 0 0 9px;
    outline: 0;
  }
  .rv-search-wrapper__contents {
    flex: 1;
    overflow: auto;
  }
  .rv-continuous-color-legend {
    font-size: 12px;
  }
  .rv-continuous-color-legend .rv-gradient {
    height: 4px;
    border-radius: 2px;
    margin-bottom: 5px;
  }
  .rv-continuous-size-legend {
    font-size: 12px;
  }
  .rv-continuous-size-legend .rv-bubbles {
    text-align: justify;
    overflow: hidden;
    margin-bottom: 5px;
    width: 100%;
  }
  .rv-continuous-size-legend .rv-bubble {
    background: #d8d9dc;
    display: inline-block;
    vertical-align: bottom;
  }
  .rv-continuous-size-legend .rv-spacer {
    display: inline-block;
    font-size: 0;
    line-height: 0;
    width: 100%;
  }
  .rv-legend-titles {
    height: 16px;
    position: relative;
  }
  .rv-legend-titles__left,
  .rv-legend-titles__right,
  .rv-legend-titles__center {
    position: absolute;
    white-space: nowrap;
    overflow: hidden;
  }
  .rv-legend-titles__center {
    display: block;
    text-align: center;
    width: 100%;
  }
  .rv-legend-titles__right {
    right: 0;
  }
  .rv-radial-chart .rv-xy-plot__series--label {
    pointer-events: none;
  }

/*!
 * Cropper.js v1.0.0-rc.3
 * https://github.com/fengyuanchen/cropperjs
 *
 * Copyright (c) 2017 Fengyuan Chen
 * Released under the MIT license
 *
 * Date: 2017-07-07T12:56:42.462Z
 */

.cropper-container {
  font-size: 0;
  line-height: 0;

  position: relative;

  -webkit-user-select: none;

     -moz-user-select: none;

      -ms-user-select: none;

          user-select: none;

  direction: ltr;
  -ms-touch-action: none;
      touch-action: none
}

.cropper-container img {
  /* Avoid margin top issue (Occur only when margin-top <= -height) */
  display: block;
  min-width: 0 !important;
  max-width: none !important;
  min-height: 0 !important;
  max-height: none !important;
  width: 100%;
  height: 100%;
  image-orientation: 0deg
}

.cropper-wrap-box,
.cropper-canvas,
.cropper-drag-box,
.cropper-crop-box,
.cropper-modal {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.cropper-wrap-box {
  overflow: hidden;
}

.cropper-drag-box {
  opacity: 0;
  background-color: #fff;
}

.cropper-modal {
  opacity: .5;
  background-color: #000;
}

.cropper-view-box {
  display: block;
  overflow: hidden;

  width: 100%;
  height: 100%;

  outline: 1px solid #39f;
  outline-color: rgba(51, 153, 255, 0.75);
}

.cropper-dashed {
  position: absolute;

  display: block;

  opacity: .5;
  border: 0 dashed #eee
}

.cropper-dashed.dashed-h {
  top: 33.33333%;
  left: 0;
  width: 100%;
  height: 33.33333%;
  border-top-width: 1px;
  border-bottom-width: 1px
}

.cropper-dashed.dashed-v {
  top: 0;
  left: 33.33333%;
  width: 33.33333%;
  height: 100%;
  border-right-width: 1px;
  border-left-width: 1px
}

.cropper-center {
  position: absolute;
  top: 50%;
  left: 50%;

  display: block;

  width: 0;
  height: 0;

  opacity: .75
}

.cropper-center:before,
  .cropper-center:after {
  position: absolute;
  display: block;
  content: ' ';
  background-color: #eee
}

.cropper-center:before {
  top: 0;
  left: -3px;
  width: 7px;
  height: 1px
}

.cropper-center:after {
  top: -3px;
  left: 0;
  width: 1px;
  height: 7px
}

.cropper-face,
.cropper-line,
.cropper-point {
  position: absolute;

  display: block;

  width: 100%;
  height: 100%;

  opacity: .1;
}

.cropper-face {
  top: 0;
  left: 0;

  background-color: #fff;
}

.cropper-line {
  background-color: #39f
}

.cropper-line.line-e {
  top: 0;
  right: -3px;
  width: 5px;
  cursor: e-resize
}

.cropper-line.line-n {
  top: -3px;
  left: 0;
  height: 5px;
  cursor: n-resize
}

.cropper-line.line-w {
  top: 0;
  left: -3px;
  width: 5px;
  cursor: w-resize
}

.cropper-line.line-s {
  bottom: -3px;
  left: 0;
  height: 5px;
  cursor: s-resize
}

.cropper-point {
  width: 5px;
  height: 5px;

  opacity: .75;
  background-color: #39f
}

.cropper-point.point-e {
  top: 50%;
  right: -3px;
  margin-top: -3px;
  cursor: e-resize
}

.cropper-point.point-n {
  top: -3px;
  left: 50%;
  margin-left: -3px;
  cursor: n-resize
}

.cropper-point.point-w {
  top: 50%;
  left: -3px;
  margin-top: -3px;
  cursor: w-resize
}

.cropper-point.point-s {
  bottom: -3px;
  left: 50%;
  margin-left: -3px;
  cursor: s-resize
}

.cropper-point.point-ne {
  top: -3px;
  right: -3px;
  cursor: ne-resize
}

.cropper-point.point-nw {
  top: -3px;
  left: -3px;
  cursor: nw-resize
}

.cropper-point.point-sw {
  bottom: -3px;
  left: -3px;
  cursor: sw-resize
}

.cropper-point.point-se {
  right: -3px;
  bottom: -3px;
  width: 20px;
  height: 20px;
  cursor: se-resize;
  opacity: 1
}

@media (min-width: 768px) {

  .cropper-point.point-se {
    width: 15px;
    height: 15px
  }
}

@media (min-width: 992px) {

  .cropper-point.point-se {
    width: 10px;
    height: 10px
  }
}

@media (min-width: 1200px) {

  .cropper-point.point-se {
    width: 5px;
    height: 5px;
    opacity: .75
  }
}

.cropper-point.point-se:before {
  position: absolute;
  right: -50%;
  bottom: -50%;
  display: block;
  width: 200%;
  height: 200%;
  content: ' ';
  opacity: 0;
  background-color: #39f
}

.cropper-invisible {
  opacity: 0;
}

.cropper-bg {
  background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQAQMAAAAlPW0iAAAAA3NCSVQICAjb4U/gAAAABlBMVEXMzMz////TjRV2AAAACXBIWXMAAArrAAAK6wGCiw1aAAAAHHRFWHRTb2Z0d2FyZQBBZG9iZSBGaXJld29ya3MgQ1M26LyyjAAAABFJREFUCJlj+M/AgBVhF/0PAH6/D/HkDxOGAAAAAElFTkSuQmCC');
}

.cropper-hide {
  position: absolute;

  display: block;

  width: 0;
  height: 0;
}

.cropper-hidden {
  display: none !important;
}

.cropper-move {
  cursor: move;
}

.cropper-crop {
  cursor: crosshair;
}

.cropper-disabled .cropper-drag-box,
.cropper-disabled .cropper-face,
.cropper-disabled .cropper-line,
.cropper-disabled .cropper-point {
  cursor: not-allowed;
}


/*! HTML5 Boilerplate v5.3.0 | MIT License | https://html5boilerplate.com/ */

/*
 * What follows is the result of much research on cross-browser styling.
 * Credit left inline and big thanks to Nicolas Gallagher, Jonathan Neal,
 * Kroc Camen, and the H5BP dev community and team.
 */

/* ==========================================================================
   Helper classes
   ========================================================================== */

/*
 * Hide visually and from screen readers
 */

.hidden {
    display: none !important;
}

/*
 * Hide only visually, but have it available for screen readers:
 * http://snook.ca/archives/html_and_css/hiding-content-for-accessibility
 */

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

/*
 * Extends the .visuallyhidden class to allow the element
 * to be focusable when navigated to via the keyboard:
 * https://www.drupal.org/node/897638
 */

.visuallyhidden.focusable:active,
.visuallyhidden.focusable:focus {
    clip: auto;
    height: auto;
    margin: 0;
    overflow: visible;
    position: static;
    width: auto;
}

/*
 * Hide visually and from screen readers, but maintain layout
 */

.invisible {
    visibility: hidden;
}

/*
 * Clearfix: contain floats
 *
 * For modern browsers
 * 1. The space content is one way to avoid an Opera bug when the
 *    `contenteditable` attribute is included anywhere else in the document.
 *    Otherwise it causes space to appear at the top and bottom of elements
 *    that receive the `clearfix` class.
 * 2. The use of `table` rather than `block` is only necessary if using
 *    `:before` to contain the top-margins of child elements.
 */

.clearfix:before,
.clearfix:after {
    content: " "; /* 1 */
    display: table; /* 2 */
}

.clearfix:after {
    clear: both;
}

/*! HTML5 Boilerplate v5.3.0 | MIT License | https://html5boilerplate.com/ */

/*
 * What follows is the result of much research on cross-browser styling.
 * Credit left inline and big thanks to Nicolas Gallagher, Jonathan Neal,
 * Kroc Camen, and the H5BP dev community and team.
 */

/* ==========================================================================
   Base styles: opinionated defaults
   ========================================================================== */

/*
 * Remove text-shadow in selection highlight:
 * https://twitter.com/miketaylr/status/12228805301
 *
 * These selection rule sets have to be separate.
 * Customize the background color to match your design.
 */

::-moz-selection {
    background: #b3d4fc;
    text-shadow: none;
}

::selection {
    background: #b3d4fc;
    text-shadow: none;
}

/*
 * A better looking default horizontal rule
 */

hr {
    display: block;
    height: 1px;
    border: 0;
    border-top: 1px solid #ccc;
    margin: 1em 0;
    padding: 0;
}

/*
 * Remove the gap between audio, canvas, iframes,
 * images, videos and the bottom of their containers:
 * https://github.com/h5bp/html5-boilerplate/issues/440
 */

audio,
canvas,
iframe,
img,
svg,
video {
    vertical-align: middle;
}

/*
 * Allow only vertical resizing of textareas.
 */

textarea {
    resize: vertical;
}

/* ==========================================================================
   Browser Upgrade Prompt
   ========================================================================== */

.browserupgrade {
    margin: 0.2em 0;
    background: #ccc;
    color: #000;
    padding: 0.2em 0;
}


/************ CONSIDER CUSTOM START ********/
.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 16px;
    box-sizing: border-box;
}

.grid {
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    pointer-events: none;
    position: fixed;
    z-index: 20;
}

.grid .group {
    height: 100%;
}

.grid .col {
    height: 100%;
    margin-top: 0;
    margin-bottom: 0;
    box-sizing: border-box;
    background-color: rgba(255, 253, 181, 0.05);
    border: 1px solid rgba(255, 158, 158, 0.4);
    border-width: 0 1px 0 1px;
}
/************ CONSIDER CUSTON END ********/


/* Calculations:

A = Useful Area = 930
B = Column width = 50
C = Number of columns = 12
D = Number of gutters = 11
E = Gutter width = 30

Current grid:
( 930 - ( 50 * 12 ) ) / 11 = 30
  A        B    C        D    E

Other valid grids, for referrence:
( 1146 - ( 68 * 12 ) ) / 11 = 30
( 954 - ( 52 * 12 ) ) / 11 = 30
( 960 - ( 58 * 12 ) ) / 11 = 24
( 940 - ( 60 * 12 ) ) / 11 = 20


We also need to know margins between columns in a percentage fashion:

30 / 930 = Gutter percentage = 3.2258064516

Using the generator leads to rounding errors:
So 1) http://www.responsivegridsystem.com/calculator/
And 2) redo math manually

Everything below is copied from the generator, except values

TODO: port this logic to Stylus or LESS CSS compiler

*/

/*
http://www.responsivegridsystem.com/calculator/
Creative Commons 3.0 - https://creativecommons.org/licenses/by/3.0/
by Graham Miller - https://plus.google.com/109283697669359322506?rel=author
*/

/*  SECTIONS  */
.section {
    clear: both;
    padding: 0px;
    margin: 0px;
    box-sizing: border-box;
}

/*  COLUMN SETUP  */
.col {
    display: block;
    float:left;
    margin: 0 0 0 3.2258064516%; /* 30 / 930 */
    box-sizing: border-box;
}
.col:first-child { margin-left: 0; }

/*  GROUPING  */
.group:before,
.group:after { content:""; display:table; }
.group:after { clear:both;}
.group {zoom:1; /* For IE 6/7 */ }


/*  GRID OF TWELVE  */
.span_12_of_12 {
    width: 100%;
}

.span_11_of_12 {
    width: 91.3978494624%; /* (50*11 + 10*30)/930*100 */
}
.span_10_of_12 {
    width: 82.7956989247%; /* (50*10 + 9*30)/930*100 */
}

.span_9_of_12 {
    width: 74.1935483871%; /* (50*9 + 8*30)/930*100 */
}

.span_8_of_12 {
    width: 65.5913978495%; /* (50*8 + 7*30)/930*100 */
}

.span_7_of_12 {
    width: 56.9892473118%; /* (50*7 + 6*30)/930*100 */
}

.span_6_of_12 {
    width: 48.3870967742%; /* (50*6 + 5*30)/930*100 */
}

.span_5_of_12 {
    width: 39.7849462366%; /* (50*5 + 4*30)/930*100 */
}

.span_4_of_12 {
    width: 31.1827956989%; /* (50*4 + 3*30)/930*100 */
}

.span_3_of_12 {
    width: 22.5806451613%; /* (50*3 + 2*30)/930*100 */
}

.span_2_of_12 {
    width: 13.9784946237%; /* (50*2 + 1*30)/930*100 */
}

.span_1_of_12 {
    width: 5.376344086%; /* (50*1 + 0*30)/930*100 */
}

/*  GO FULL WIDTH BELOW 480 PIXELS */
@media only screen and (max-width: 640px) {
    .col {
        margin: 1% 0 1% 0%;
    }

    .span_1_of_12, .span_2_of_12, .span_3_of_12, .span_4_of_12,
    .span_5_of_12, .span_6_of_12, .span_7_of_12, .span_8_of_12,
    .span_9_of_12, .span_10_of_12, .span_11_of_12, .span_12_of_12 {
        width: 100%;
    }
}
/* REFERENCE HTML

<div class="section group">
    <div class="col span_1_of_12">
    1 of 12
    </div>
    <div class="col span_1_of_12">
    1 of 12
    </div>
    <div class="col span_1_of_12">
    1 of 12
    </div>
    <div class="col span_1_of_12">
    1 of 12
    </div>
    <div class="col span_1_of_12">
    1 of 12
    </div>
    <div class="col span_1_of_12">
    1 of 12
    </div>
    <div class="col span_1_of_12">
    1 of 12
    </div>
    <div class="col span_1_of_12">
    1 of 12
    </div>
    <div class="col span_1_of_12">
    1 of 12
    </div>
    <div class="col span_1_of_12">
    1 of 12
    </div>
    <div class="col span_1_of_12">
    1 of 12
    </div>
    <div class="col span_1_of_12">
    1 of 12
    </div>
</div>

*/



/*
    Consider-wide shared styling, sort of a reset.
    Used in multiple bundles, handle with care <3
*/

:root {
    color: var(--neutral-800);
    font-family: 'Lato', 'Helvetica', 'Arial', sans-serif;
    font-size: 14px;
    line-height: 1.3;
    overflow-anchor: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    font-weight: normal;
}

a, button.button-link {
    text-decoration: none;
    color: var(--blue-800);
}

svg {
    max-width: 100%;
    max-height: 100%;
}

input:invalid {
    /* overrides firefox browser styles */
    box-shadow: none;
}

dd {
    margin-left: 0;
}

.app-wrap {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 192px auto;
}

.app-content-wrap {
    max-width: 968px;
    padding: 0 24px;
    margin: 0 auto;
    height: 100%;
}

.app-content-wrap-dual-sidebar {
    display: grid;
    grid-column-gap: 24px;
    grid-template-columns: 168px auto 208px;
    grid-template-areas: 'left-sidebar main right-sidebar';
}

.app-content-wrap-left-sidebar {
    display: grid;
    grid-column-gap: 24px;
    grid-template-columns: 168px auto;
    grid-template-areas: 'sidebar main';
}

.app-content-wrap-right-sidebar {
    display: grid;
    grid-column-gap: 24px;
    grid-template-columns: auto 208px;
    grid-template-areas: 'main sidebar';
}

.app-content-wrap-wide {
    max-width: 1288px;
}

.app-content-main {
    grid-area: main;
    padding: 24px 0;
    min-width: 0;
}

.app-content-main-overflow {
    overflow: auto;
}

.app-toolbar {
    margin: 0 0 24px;
    display: flex;
    justify-content: space-between;
}

.app-content-sidebar {
    grid-area: sidebar;
}

.app-content-sidebar-left {
    grid-area: left-sidebar;
}

.app-content-sidebar-right {
    grid-area: right-sidebar;
}

.app-bg-hack {
    /*
        just here as a transitional step
        as we migrate to new design
    */
    background: var(--neutral-150);
    position: fixed;
    z-index: -1;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
}

.app-tile {
    border: 1px solid var(--neutral-150);
    border-radius: 4px;
    padding: 24px;
    margin-bottom: 16px;
}

.app-tile-header {
    color: var(--neutral-800);
    font-weight: bold;
    font-size: 16px;
    margin-bottom: 20px;
}

.app-content-section {
    color: var(--neutral-600);
    margin-bottom: 24px;
    max-width: 640px;
}

.app-content-section p {
    margin: 24px 0;
}

.app-content-section-header {
    font-size: 16px;
    font-weight: bold;
    color: var(--neutral-600);
    margin: 40px 0 24px;
    padding-bottom: 18px;
    border-bottom: 1px solid var(--neutral-150);
}

.app-content-section-header:first-child {
    margin-top: 0;
}

.page-container {
    position: relative;
    z-index: 1;
    min-height: 400px;
}

@media only screen and (min-height: 650px) {
    .page-container {
        min-height: 550px;
    }
}

.more-matches {
    background-color: var(--neutral-white);
    text-align: center;
    display: block;
    max-width: 400px;
    border: 1px solid var(--active-700);
    color: var(--neutral-750);
    margin: 40px auto 50px auto;
    border-radius: 5px;
    font-size: 16px;
    padding: 15px;
    cursor: pointer;
}

.list-toggler-loading .icon,
.contact-pill-loader,
.spinning-icon {
    animation: icon-spin 1s linear infinite;
}

@keyframes icon-spin {
    0% {
        transform: rotate(0);
    }
    100% {
        transform: rotate(360deg);
    }
}

.react-autosuggest__container {
    position: relative;
}

.rip-container,
.edit-single .react-autosuggest__container {
    outline: none;
    position: relative;
    width: 100%;
    border: none;
    border-bottom: 2px solid var(--active-600);
    display: flex;
    flex-wrap: wrap;
    cursor: text;
}

.edit-single .react-autosuggest__container {
    padding-bottom: 8px;
}

.rip-container > :last-child {
    margin-right: 0;
    flex-grow: 1;
}

.react-autosuggest__container {
    box-sizing: border-box;
}

.react-autosuggest__container input {
    -webkit-appearance: none;
    outline: none;
    border: none;
    box-sizing: border-box;
    width: 100%;
    background: none;
    padding: 0;
    font-size: 14px;
}

.react-autosuggest__suggestions-container--open {
    font-size: 14px;
    border: 1px solid var(--neutral-200);
    border-top: none;
    background-color: var(--neutral-white);
    color: var(--neutral-750);
    box-sizing: border-box;
    position: absolute;
    width: 100%;
    top: 100%;
    left: 0;
    padding: 5px 0 15px;
    margin-top: 2px;
    margin-bottom: 0;
    z-index: 2;
    border-radius: 0 0 5px 5px;
    box-shadow: 0 3px 0 var(--alpha-200);
}

.empty-suggestions-container {
    padding: 8px 24px 0;
}

.edit-single .react-autosuggest__suggestions-container {
    top: 26px;
}

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

.react-autosuggest__suggestion {
    list-style: none;
    padding: 5px 20px;
    color: var(--neutral-600);
}

.react-autosuggest__suggestion--highlighted {
    border-left: 2px solid var(--active-700);
    margin-left: -1px;
    background-color: var(--neutral-050);
    padding-left: 19px;
    color: var(--neutral-750);
}

.results-count {
    font-size: 14px;
    text-align: center;
    margin-top: 24px;
    color: var(--neutral-400);
    font-style: italic;
    margin-bottom: 24px;
}

.results-count b {
    color: var(--neutral-600);
}

.results-count-reset-filters {
    display: inline-block;
    margin-left: 4px;
    cursor: pointer;
}

.search-mode {
    background-color: var(--neutral-050);
    padding: 16px 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.search-mode a {
    color: var(--neutral-600);
    display: inline-flex;
    align-items: center;
}

.back-to-search-bt {
    transform: rotate(180deg);
}

.popup-toggle {
    padding: 0;
    border: none;
    background: transparent;
    outline: none; /* TODO: a11y fix*/
}

@keyframes translate-opacity-reset {
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

.creator-toggle.popup-toggle-active .icon {
    transform: rotate(135deg);
}

.custom-list-form {
    display: flex;
    font-size: 14px;
}

.custom-list-input-wrap {
    border-bottom: 2px solid var(--active-700);
    flex: 1;
    display: flex;
    padding-right: 10px;
}

.custom-list-input-icon {
    margin: auto 0;
}

.custom-list-input {
    border: 0;
    background: transparent;
    flex: 1;
}

.custom-list-input::placeholder {
    color: var(--neutral-400);
}

.custom-list-input:focus,
.edit-list-input:focus {
    outline: none;
}

.custom-list-byline {
    font-style: italic;
    letter-spacing: 0.02em;
    margin: auto 0 auto 20px;
}

.custom-list-submit {
    padding: 10px 16px;
    line-height: 1;
    border: 2px solid var(--active-700);
    background: none;
    border-radius: 2px;
    display: block;
    margin-left: 10px;
}

.custom-list-submit:hover,
.custom-list-submit:focus {
    outline: none;
    background: white;
    color: var(--neutral-black);
    box-shadow: 0 3px 0 0 var(--alpha-200);
}

.custom-list-submit:active {
    border-color: var(--active-850);
}


.custom-list-info {
    font-size: 14px;
    font-style: italic;
    text-align: center;
    margin-top: 20px;
    color: var(--neutral-400);
}

/*
* Specced UI controls
* ---
* Attempting to keep everything below this reserved for the components
* in the "UI Controls" sketch file, since they should be re-used pretty often.
*
* A lot of this is going to be really similar to existing CSS, we should work on
* re-using this where possible.
*/

.textarea-label {
    color: var(--neutral-600);
    margin-bottom: 8px;
    display: block;
}

.textarea-primary {
    width: 100%;
    resize: none;
    height: 60px;
    border: 0;
    border: 1px solid var(--neutral-200);
    border-radius: 4px;
    outline: none;
    padding: 8px;
}

.textarea-remaining-count {
    text-align: right;
    margin-bottom: 4px;
    font-style: italic;
    color: var(--neutral-400);
    font-size: 12px;
}

.textarea-primary:focus {
    border-color: var(--active-600);
}

.textarea-note {
    font-size: 12px;
    margin: 8px 0 24px;
    font-style: italic;
    color: var(--neutral-600);
}

.search-result-error {
    margin: 40px auto;
    text-align: center;
    font-size: 18px;
    color: var(--neutral-750);
}

.back-top-top {
    position: fixed;
    bottom: 72px;
    right: 20px;
    z-index: 1;
    white-space: nowrap;
}

.back-to-top-button {
    border: 0;
    outline: none;
    padding: 8px;
    border-radius: 50%;
    background: var(--neutral-white);
    transform: rotate(-90deg);
}

.no-bullets-list {
    list-style: none;
    padding-left: 0;
}

mark {
    background: var(--active-100)
}

/* ?variations=system-fonts */

/* ?variations=font-smoothing */

.profile {
  padding: 32px;
}

.profile-title {
  color: var(--neutral-750);
  line-height: 18px;
  font-weight: normal;
  margin: auto 10px auto 0;
}

.profile-title-wrap {
  display: flex;
}

.profile-location,
.profile-headline {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  display: inline-block;
}

.profile-results-toggle {
  color: var(--neutral-750);
  font-size: 14px;
  line-height: 32px;
  margin: auto 30px auto 0;
}

.profile-chunk {
  margin-bottom: 12px;
}

.profile-chunk:last-of-type {
  margin-bottom: 0;
}

.profile-icon-lockup {
  display: flex;
}

.profile-icon-lockup > span {
  margin: auto 0;
}

.profile-icon-lockup > .icon {
  margin: auto 8px auto 0;
  flex-shrink: 0;
}

.profile-header-wrap {
  width: 100%;
  background: var(--neutral-050);
  border-radius: 5px 5px 0 0;
}

.profile-header {
  display: flex;
}

.profile-header-main {
  margin-top: 16px;
  margin-left: 24px;
  margin-right: 12px;
  max-width: calc(100% - 164px);
  flex-grow: 1;
}

.profile-header-top {
  display: flex;
}

.profile-header-bio {
  flex-grow: 1;
  max-width: calc(100% - 64px);
}

.profile-header-avatar-wrap {
  flex-shrink: 0;
  overflow: hidden;
}

.profile-header-avatar {
  background: var(--neutral-200);
  height: 128px;
  width: 128px;
  flex-shrink: 0;
  border-top-left-radius: 5px;
}

.profile-name-wrap {
  display: flex;
  align-items: center;
}

.profile-name-wrap .status-tag {
  margin: auto 4px;
}

.profile-header-actions {
  flex-shrink: 0;
  height: 32px;
  margin: auto 0;
}

.profile-action {
  display: inline-block;
  height: 32px;
  width: 32px;
  position: relative;
}

.profile-action .tooltip {
  white-space: nowrap;
}

.profile-name {
  font-size: 24px;
  line-height: 32px;
  margin-right: 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.profile-subhead {
  margin-bottom: 4px;
  line-height: 32px;
  height: 32px;
  display: flex;
}

.profile-header-social-wrap {
  display: flex;
}

.profile-header-emails {
  flex-grow: 1;
  display: flex;
  align-items: center;
  margin-left: -8px;
}

.profile-header-emails > .icon {
  margin-right: 4px;
}

.profile-email {
  color: var(--neutral-600);
  cursor: pointer;
  vertical-align: middle;
}

.profile-header-social-list {
  flex-shrink: 0;
}

.profile-social-icon-linkedin:hover {
  fill: #0077b5
}

.profile-social-icon-twitter:hover {
  fill: #1da1f2
}

.profile-social-icon-github:hover {
  fill: var(--neutral-800)
}

.profile-social-icon-website:hover {
  fill:var(--blue-800)
}

.profile-social-icon-resume:hover {
  fill: var(--neutral-750)
}

.profile-headline {
  /* intentionally off by 1 for visual alignment */
  margin-right: 11px;
}

.profile-location {
  margin-left: -12px;
  white-space: nowrap;
}

.profile-header-secondary-actions {
  height: 32px;
  display: flex;
  flex-shrink: 0;
  margin-left: auto;
}

.profile-header-secondary-actions .list-toggler {
  height: 32px;
}

.profile-header-slim .profile-header-avatar {
  height: 80px;
  width: 80px;
}

.profile-header-slim .profile-name {
  font-size: 20px;
  line-height: 28px;
}

.profile-header-slim .profile-subhead {
  margin: 0;
  height: auto;
  font-size: 14px;
  line-height: 20px;
}

.profile-header-slim .profile-headline {
  max-width: 100%;
}

.profile-contact-tray {
  background: var(--neutral-100);
  border-left: 2px solid var(--active-700);
  padding: 12px 32px;
}

.profile-contact-link {
  color: var(--blue-800);
  font-weight: bold;
  display: inline-block;
  margin-right: 24px;
}

.reference-tray {
  padding: 32px;
  background: var(--neutral-000);
}

.reference-disclaimer {
  color: var(--neutral-400);
  font-style: italic;
  margin-bottom: 20px;
  font-size: 14px;
}

.reference-request-intro {
  color: var(--blue-800);
  margin-top: 6px;
  margin-bottom: 12px;
  cursor: pointer;
  white-space: nowrap;
}

.profile-markers {
  display: flex;
  max-width: 360px;
}

.profile-markers-excess {
  flex-shrink: 0;
  flex-grow: 0;
  width: 72px;
  position:relative;
}

.profile-markers-excess .popup-toggle {
  display: block;
  margin: 0 auto;
  font-size: 10px;
}

.profile-markers-excess-icon {
  display: block;
  transform: rotate(90deg);
  background: var(--neutral-100);
  border-radius: 50%;
  margin-bottom: 10px;
}

.profile-markers-excess-typeahead {
  width: 320px;
  left: 8px;
  top: calc(100% + 8px);
  width: 320px;
}

.profile-marker {
  width: 72px;
  padding: 2px;
  display: inline-block;
  line-height: normal;
  cursor: pointer;
  vertical-align: bottom;
}

.profile-marker-avatar-wrap {
  height: 32px;
  width: 32px;
  position: relative;
  margin: 0 auto 8px;
}

.profile-marker-avatar {
  height: 32px;
  width: 32px;
  border-radius: 50%;
}

.profile-marker-icon {
  position: absolute;
  right: -8px;
  bottom: -4px;
  height: 20px;
  width: 20px;
}

.profile-marker-icon-love,
.profile-marker-icon-reference,
.profile-marker-icon-recommender {
  border-radius: 50%;
  border: 2px solid var(--neutral-white);
}

.profile-marker-icon-love {
  background: var(--red-700);
}

.profile-marker-icon-reference {
  background: var(--purple-700);
}

.profile-marker-icon-recommender {
  fill: var(--neutral-white);
  background: var(--teal-500);
}

.profile-marker-name {
  font-size: 10px;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.profile-marker-popover {
  line-height: normal;
  border-radius: 4px;
  padding: 24px;
  background: var(--neutral-white);
  border: 1px solid var(--neutral-200);
  box-shadow:
      0 2px var(--alpha-50),
      0 2px 4px var(--alpha-50);
}

.profile-markers-preheader {
  color: var(--neutral-400);
  margin-bottom: 16px;
  font-size: 12px;
}

.profile-employee-callout {
  background: var(--green-100);
  border-top: 2px solid var(--green-500);
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.qb-wrap {
    background: var(--neutral-white);
    padding: 16px 0;
    border-radius: 0 0 5px 5px;
    box-shadow:
        0 2px var(--alpha-50),
        0 2px 4px var(--alpha-50);
    position: relative;
}

.qb-empty {
    padding: 8px 20px 0;
}

.qb-empty-message {
    font-size: 14px;
    color: var(--neutral-400);
    font-style: italic;
    margin-bottom: 16px;
}

.qb-empty-fake-checkbox {
    display: inline-block;
    height: 10px;
    width: 10px;
    margin-right: 8px;
    border-radius: 2px;
    border: 2px solid var(--neutral-200);
    position: relative;
    top: 2px;
    cursor: pointer;
}

.qb-requested-icon {
    border: 1px solid var(--active-850);
    border-radius: 50%;
    height: 16px;
    width: 16px;
    margin-right: 8px;
    position: relative;
    bottom: 1px;
}

.query-builder {
    position: relative;
}

.query-builder .col {
    z-index: 2;
}

.query-clause,
.fake-empty-clause {
    padding: 0 24px;
    font-weight: 300;
    font-size: 20px;
    line-height: 30px;
    display: flex;
}

.query-clause-removing {
    color: var(--neutral-200);
    padding-bottom: 3px;
    margin-bottom: -3px;
}

.query-parts {
    flex-grow: 1;
    position: relative;
}

.clause-decorator {
    position: absolute;
    transform: translateX(-100%);
}

.clause-icon-wrap {
    flex-shrink: 0;
    margin-right: 12px;
}

.query-input,
.query-part strong {
    font-weight: normal;
}

.query-clause:not(.query-clause-removing):hover
    .query-input-active:not(.static-input) {
    cursor: pointer;
    border-bottom: 3px solid var(--active-200);
}

.query-input-active:hover {
    cursor: pointer;
    background-color: var(--active-000);
}

.query-input-editing {
    background-color: var(--active-050);
    border-bottom: 3px solid var(--active-400);
}

.query-input-editing:hover {
    cursor: pointer;
}

.input-placeholder {
    color: var(--neutral-400);
    font-weight: 300;
    font-family: 'Lato', 'Helvetica Light', 'Helvetica', sans-serif;
}

.static-input {
    pointer-events: none;
    font-weight: 300;
}

.edit-param-outer {
    position: relative;
    margin-bottom: -18px;
    margin-top: 18px;
}

.edit-param-close {
    position: absolute;
    top: 20px;
    right: 30px;
    z-index: 3;
}

.edit-param-close img {
    transform: rotate(45deg);
}

.edit-clause {
    background-color: white;
    padding: 15px 30px 30px;
    border-top: 1px solid var(--neutral-200);
    border-radius: 0 0 5px 5px;
    box-shadow: 0 4px var(--alpha-200);
}

.edit-clause-title {
    color: var(--neutral-400);
    font-size: 14px;
    margin-bottom: 10px;
}

.clsugg-clauses-tray {
    font-size: 14px;
    background-color: var(--neutral-050);
    display: inline-flex;
    align-items: center;
    margin-left: 18px;
    padding-left: 6px;
    padding-right: 16px;
    border-radius: 36px;
    height: 36px;
}

.clsugg-showing .clsugg-clauses-tray {
    display: flex;
    border-radius: 0;
    margin-left: 0;
    padding-left: 24px;
    margin-bottom: 12px;
}

.clsugg-tab, .clsugg-toggle {
    margin-right: 24px;
}

.clsugg-save {
    color: var(--blue-800);
}

.clsugg-showing .clsugg-save {
    display: none;
}

.clsugg-triggers {
    flex-grow: 1;
    display: flex;
    align-items: center;
    height: 100%;
}

.clsugg-tab {
    color: var(--blue-800);
    cursor: pointer;
    line-height: 36px;
}

.clsugg-tab:hover,
.clsugg-tab:focus {
    color: var(--neutral-750);
}

.clsugg-showing .clsugg-tab-selected,
.clsugg-showing .clsugg-tab-selected:hover {
    color: var(--neutral-750);
}

.clsugg-showing .clsugg-tab-selected {
    line-height: 32px;
    margin-top: 2px;
    border-bottom: 2px solid var(--active-850);
}

.clause-suggestions {
    position: relative;
    border-radius: 0 0 5px 5px;
    margin: 8px 0;
    overflow: hidden;
    will-change: transform;
}

.clause-suggestions.clsugg-showing {
    margin-bottom: -16px;
    padding-bottom: 18px;
}

.clsugg-suggestions {
    animation: clsugg-drop-in 140ms forwards cubic-bezier(0, 0, 0.2, 1);
}

@keyframes clsugg-drop-in {
    0% {
        transform: translateY(-32px);
    }
    100% {
        transform: translateY(0);
    }
}

.clsugg-clause {
    font-size: 18px;
    /* padding-left: icon size + icon margin + query-clause padding*/
    padding: 0 20px 0 50px;
    line-height: 28px;
    margin: 0;
    color: var(--neutral-600);
    cursor: pointer;
}

.query-clause.query-clause-hovered:not(.clsugg-clause):not(:hover) {
    background: var(--active-100);
    border-left: 3px solid var(--active-700);
    padding: 0 20px 0px 21px;
}

.clsugg-clause:not(.query-clause-selected):hover {
    background: var(--neutral-050);
    border-left: 2px solid var(--active-700);
    color: var(--neutral-750);
    padding: 0 20px 0 48px;
}

.clsugg-clause.query-clause-selected {
    cursor: default;
    color: var(--neutral-200);
}

.clause-disabled,
.clause-disabled:hover {
    color: var(--neutral-400);
    background-color: transparent;
    pointer-events: none;
}

.clsugg-toggle {
    color: var(--neutral-400);
    cursor: pointer;
    line-height: 32px;
    padding-left: 24px;
    text-transform: uppercase;
    font-size: 10px;
}

.clsugg-add:hover {
    text-decoration: underline;
}

.clsugg-header:hover .pill-text,
.query-builder:hover ~ .clause-suggestions .clsugg-add .pill-text {
    opacity: 1;
    transition-duration: 0.05s;
}

.clsugg-all-used {
    padding: 5px 30px;
    font-style: italic;
}

.query-input-badge {
    display: inline-block;
    background: var(--neutral-150);
    font-size: 12px;
    border-radius: 2px;
    height: 20px;
    line-height: 20px;
    padding: 0 8px;
    text-transform: uppercase;
    vertical-align: top;
    margin-top: 7px;
    margin-left: 8px;
    font-weight: bold;
}

.card-activity {
  background: var(--neutral-050);
}

.card-activity:last-child {
  border-radius: 0 0 5px 5px;
}

.card-activity-header {
  font-size: 14px;
  display: flex;
  justify-content: space-around;
  padding: 16px 16px 24px 36px;
}

.card-activity-pagination-button {
  height: 32px;
  padding: 0;
  border: 0;
  background: none;
  color: var(--neutral-600);
  font-weight: bold;
  outline: none;
  margin-right: auto;
}

.card-activity-pagination-all {
  font-style: italic;
  color: var(--neutral-400);
}

.card-activity-pagination-button .icon {
  padding: 4px;
  box-sizing: content-box;
  border-radius: 50%;
  margin-right: 8px;
}

.card-activity-pagination-button:hover .icon,
.card-activity-pagination-button:focus .icon {
  background: var(--neutral-white);
  fill: var(--active-700);
}

.card-activity-pagination-fewer .icon {
  transform: rotate(180deg);
}

.card-assignee {
  margin-left: auto;
  position: relative;
}

.card-assignee .tooltip {
  white-space: nowrap;
}

.card-assignee .icon {
  margin-left: 4px;
}

.card-assignee-typeahead {
  width: 400px;
  right: 0;
  top: 32px;
}

.card-activity-log {
  padding: 0 32px 16px;
}

.status-tag:not(:last-child) {
  margin-right: 4px;
}

.status-tag {
  display: inline-block;
  font-size: 9px;
  border: 1px solid var(--teal-500);
  padding: 2px 6px;
  text-transform: uppercase;
  border-radius: 2px;
  outline: none;
  background: var(--neutral-white);
  color: var(--neutral-750);
}

.status-tag-faded {
  color: var(--neutral-400);
  border-color: var(--neutral-400);
}

.status-tag-faded {
  color: var(--neutral-400);
  border-color: var(--neutral-400);
}

.status-tag-selected {
  color: var(--neutral-white);
  border-color: var(--neutral-750);
  background-color: var(--neutral-750);
}

.status-tag-colleague {
  border-color: var(--green-500);
  background-color: var(--neutral-white);
}

.profile-update {
  display: flex;
  align-items: center;
}

.profile-update:not(:last-child) {
  margin-bottom: 8px;
}

.profile-update-new {
  position: relative;
}

.profile-update-new::after {
  content: '';
  position: absolute;
  background: var(--active-050);
  top: -12px;
  bottom: -12px;
  left: -32px;
  right: -32px;
  animation: fade-out-update 1s cubic-bezier(0.4, 0, 0, 1) forwards;
  animation-delay: 1s;
  will-change: opacity;
}

@keyframes fade-out-update {
  0% {
      opacity: 1;
  }
  100% {
      opacity: 0;
  }
}


.profile-update-new > * {
  position: relative;
  z-index: 1;
}

.profile-update-avatar-wrap {
  flex: 0;
  align-self: flex-start;
  margin-top: 4px;
  margin-right: 8px;
  position: relative;
}

.profile-update-recommended-icon {
  position: absolute;
  bottom: -8px;
  right: -8px;
  background: var(--teal-500);
  fill: white;
  border-radius: 50%;
  border: 2px solid var(--neutral-white);
  height: 20px;
  width: 20px;
}

.profile-update-avatar {
  height: 32px;
  width: 32px;
  border-radius: 50%;
}

.profile-update-main {
  flex-grow: 1;
  font-size: 14px;
  max-width: 600px;
}

.profile-update-button-row {
  margin-top: 12px;
}

.profile-update-row {
  display: flex;
}

.profile-update-meta {
  line-height: 40px;
  flex-shrink: 0;
  margin-left: 8px;
}

.profile-update-action {
  visibility: hidden;
  display: inline-block;
  margin: 0 4px;
  color: var(--blue-800);
}

.profile-update-row:hover .profile-update-action {
  visibility: visible;
}

.profile-update-meta-text {
  display: inline-block;
  color: var(--neutral-400);
  margin: 0 4px;
  font-style: italic;
}

.profile-update-read-more {
  margin-top: auto;
}

.profile-update-bubble {
  padding: 12px 20px;
  line-height: 16px;
  border-radius: 4px 20px 20px 4px;
  background: var(--neutral-white);
  margin-bottom: 8px;
  white-space: pre-wrap;
}

.profile-update-bubble img {
  max-width: 400px;
  max-height: 400px;
}

.profile-update-row:first-child .profile-update-bubble {
  border-top-left-radius: 20px;
}

.profile-update-row:last-child .profile-update-bubble {
  border-bottom-left-radius: 20px;
  margin-bottom: 0;
}

.activity-status-lockup .icon {
  position: relative;
  bottom: 1px;
  left: 2px;
}

.activity-status-lockup-type {
  text-transform: uppercase;
  font-size: 12px;
  margin: 0 12px;
}

.activity-status-lockup-label {
  font-weight: bold;
}

.activity-status-disabled, .activity-update-status-select {
  height: 40px;
  background: var(--neutral-white);
  padding: 0 8px 0 4px;
  border-radius: 40px;
  line-height: 36px;
  border: 2px solid white;
  display: inline-block;
  position: relative;
}

.activity-update-status-select:not(.activity-status-disabled) {
  cursor: pointer;
}

.activity-status-disabled {
  background: var(--neutral-100);
  border-color: var(--neutral-200);
  padding-right: 12px;
}

.activity-update-status-select.is-focused,
.activity-update-status-select.is-open,
.activity-update-status-select:hover {
  border-color: var(--active-700);
}

.activity-update-status-select .Select-menu {
  left: calc(100% + 8px);
  width: 185px;
  top: 0;
  transform: translateY(-50%);
}

.activity-update-status-preheader {
  color: var(--neutral-400);
  text-transform: uppercase;
  margin-right: 16px;
}

.suggestion-modal-textarea {
  margin: 8px 0 16px;
}

.card-activity-wrap {
    display: flex;
    gap: 8px;
    padding: 24px 32px;
    background: var(--neutral-100);
}

.card-activity-wrap:last-child {
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
}

.card-activity-wrap .expanding-textarea {
    flex-grow: 1;
}

.button {
    padding: 0 16px;
    height: 36px;
    line-height: 32px;
    background: none;
    border-radius: 4px;
    font-size: 14px;
    display: inline-block;
    color: var(--neutral-750);
    box-sizing: border-box;
    border: 0;
}

.button-round {
    border-radius: 100vh;
}

.button-bold {
    font-weight: bold;
}

.button-big {
    height: 48px;
    line-height: 44px;
    padding: 0 20px;
}

.button-full-width {
    width: 100%;
    text-align: center;
}

.button:focus {
    outline: none;
}

.button-simple {
    border: 2px solid transparent;
    color: var(--neutral-400);
}

.button-simple:hover,
.button-simple:focus {
    color: var(--neutral-750);
}

.button-solid {
    background: var(--active-600);
}

.button-solid.button-blue {
    background: var(--teal-500)
}

.button-solid.button-blue {
    color: var(--neutral-white);
}

.button-solid.button-blue:hover,
.button-solid.button-blue:active {
    color: var(--neutral-750);
}

.button-solid-secondary {
    background: var(--neutral-100);
}

.button-solid-secondary {
    border: 2px solid var(--neutral-100)
}

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

.button-primary,
.button-solid {
    border: 2px solid var(--active-600);
}

.button-red {
    border: 2px solid var(--red-700);
}

.button-blue {
    border-color: var(--teal-500);
}

.button-white {
    border-color: var(--neutral-white);
    color: var(--neutral-white);
}

.button-solid.button-white {
    color: var(--neutral-750);
    background: var(--neutral-white);
}

.button-white:hover {
    border-color: var(--active-600);
}

.button-secondary {
    border: 2px solid var(--neutral-200);
}

.button-secondary.button-solid {
    border-color: var(--neutral-050);
    background-color: var(--neutral-050);
}

.button-solid-secondary:hover,
.button-solid-secondary:focus {
    background: white;
    color: var(--neutral-black);
    box-shadow: 0 3px 0 0 var(--alpha-200);
}

.button-solid:hover .icon,
.button-solid:focus .icon,
.button-white:hover .icon {
    fill: var(--active-600);
}

.button-blue.button-solid:hover .icon,
.button-blue.button-solid:focus .icon {
    fill: var(--teal-500);
}

.button-blue.button-solid:hover,
.button-blue.button-solid:focus {
    background: var(--teal-500);
    color: var(--neutral-white);
}

.button-solid.button-secondary:hover .icon,
.button-solid.button-secondary:focus .icon {
    fill: var(--neutral-750);
}

.button:hover,
.button:focus {
    background: white;
    color: var(--neutral-black);
    box-shadow: 0 3px 0 0 var(--alpha-200);
}

.button-simple:hover,
.button-simple:focus {
    border-color: var(--neutral-200);
    box-shadow: 0 3px 0 0 var(--alpha-200);
}

.button[disabled] {
    pointer-events: none;
}

.button-primary[disabled],
.button-solid[disabled] {
    background: none;
    border-color: var(--neutral-200);
    color: var(--neutral-400);
    box-shadow: none;
}

.button-primary[disabled] {
    background: none;
}
.button-secondary[disabled] {
    color: var(--neutral-200);
}

.button-solid:active,
.button-secondary:active,
.button-simple:active,
.button-primary:active {
    border-color: var(--active-850);
}

.button-blue:active {
    border-color: var(--teal-500);
}

.button-loader {
    position: relative;
}

.button-loader .loader-icon {
    display: none;
    position: absolute;
    width: 32px;
    left: calc(50% - 16px);
    top: 0;
    animation: loader-icon 1s linear infinite;
}

.loader-icon-inline {
    margin-top: -0.8em;
    margin-bottom: -0.8em;
    animation: loader-icon 1s linear infinite;
}

.button.button-loader-loading {
    pointer-events: none;
    color: transparent;
}

.button.button-loader-loading .icon:not(.loader-icon) {
    visibility: hidden;
}

.button-secondary.button-loader-loading.button-solid,
.button-secondary.button-loader-loading:hover.button-solid,
.button-secondary.button-loader-loading:focus.button-solid  {
    background: var(--neutral-050);
}

.button-loader-loading .loader-icon {
    display: block;
    will-change: transform;
}

.button-has-icon {
    padding-left: 2px;
}

.button-has-right-icon {
    padding-right: 2px;
}

.button-icon {
    margin-right: 4px;
    margin-bottom: 2px;
    vertical-align: top;
    height: 32px;
    width: 32px;
}

.button-has-right-icon .buton-icon {
    margin-right: 0;
    margin-left: 4px;
}

.button-icon-small {
    margin: 8px 6px 8px;
    height: 16px;
    width: 16px;
}

.button-row > .button + .button {
    margin-left: 8px;
}

@keyframes loader-icon {
    0% {
        transform: rotate(0);
    }
    100% {
        transform: rotate(360deg);
    }
}

.button-subtext {
    font-size: 12px;
    margin-left: 8px;
    color: var(--neutral-400);
}

.button-blue.button-solid .button-subtext {
    color: var(--neutral-white);
}

.button-thin {
    border-width: 1px;
}

.button-tray {
    position: relative;
}

.button-tray-icon {
    margin-left: 8px;
    fill: var(--neutral-200);
}

.button-tray-with-dots {
    padding-left: 8px;
    padding-right: 8px;
    border-color: var(--neutral-200);
}

.button-tray-with-dots:hover {
    background: var(--neutral-100);
    border-color: var(--neutral-100);
}

.button-tray-dots {
    fill: var(--neutral-800);
}

.button-tray-subtext {
    margin-left: 4px;
    color: var(--neutral-600);
}

.button-tray-pretext {
    margin-right: 4px;
    color: var(--neutral-600);
    font-weight: normal;
}

.typahead, .typahead * {
    box-sizing: border-box;
}

.typeahead {
    font-size: 14px;
    border-radius: 6px;
    padding: 16px;
    position: absolute;
    z-index: 99;
}

.typeahead,
.typeahead-suggestions-container-open {
    background: var(--neutral-white);
    border: 1px solid var(--neutral-200);
    box-shadow:
        0 2px var(--alpha-50),
        0 2px 4px var(--alpha-50);
}

.typeahead-suggestions-container-open {
    border-top: 0;
    border-radius: 0 0 6px 6px;
    padding: 8px 0;
    position: absolute;
    z-index: 1;
    top: calc(100% - 4px);
    left: -17px;
    right: -17px;
}

.typeahead-input-wrap {
    width: 100%;
}

.typeahead-input-warning {
    display: flex;
    color: var(--neutral-600);
    align-items: center;
    margin: 4px 0;
    line-height: 16px;
}

.typeahead-input-warning svg {
    fill: currentColor;
    margin-right: 8px;
}

.typeahead-input {
    background: none;
    width: 100%;
    border: 0;
    padding-left: 2px;
    margin-bottom: 4px;
    font-size: 14px;
    height: 28px;
    line-height: 28px;
    outline: none;
    padding-bottom: 4px;
    border-bottom: 2px solid var(--active-600);
}

.typeahead-input-area {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    position: relative;
    outline: none;
}

.typeahead-container {
    box-sizing: border-box;
}

.typeahead-suggestions-list {
    margin: 0;
    padding: 0;
    max-height: 224px;
    overflow: auto;
}

.typeahead-suggestions-list::-webkit-scrollbar {
    width: 4px;
}

.typeahead-suggestions-list::-webkit-scrollbar-track {
    background: var(--alpha-200);
}

.typeahead-suggestions-list::-webkit-scrollbar-thumb {
    background: var(--active-700);
    border-radius: 4px;
}

.typeahead-suggestion {
    list-style: none;
    padding: 0 20px;
    line-height: 32px;
    color: var(--neutral-600);
    cursor: pointer;
}

.typeahead-suggestion-highlighted {
    border-left: 2px solid var(--active-700);
    margin-left: -1px;
    background-color: var(--neutral-050);
    padding-left: 19px;
    color: var(--neutral-750);
}

.typeahead-profile {
    padding: 16px 0;
    line-height: normal;
    font-size: 14px;
    color: var(--neutral-750);
    position: relative;
    display: flex;
}

.typeahead-suggestion-highlighted .typeahead-profile-saved {
    border-color: var(--neutral-200);
    background-color: var(--neutral-050);
}

.typeahead-profile-saved .typeahead-profile-details,
.typeahead-profile-saved .typeahead-profile-avatar {
    opacity: 0.4;
}

.typeahead-profile-avatar {
    height: 32px;
    width: 32px;
    border-radius: 2px;
    margin-right: 12px;
    flex-shrink: 0;
}

.typeahead-profile-details {
    display: flex;
    flex-wrap: wrap;
    flex-grow: 1;
    overflow: hidden;
}

.typeahead-profile-headline,
.typeahead-profile-name {
    flex-basis: 100%;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}

.typeahead-profile-headline strong {
    /* could be custom markdown renderer instead */
    font-weight: normal;
}

.typeahead-profile-name {
    font-weight: bold;
}

.typeahead-tag {
    margin: auto 0 auto 8px;
    flex-shrink: 0;
    font-style: italic;
    font-size: 12px;
    display: flex;
    align-content: center;
}

.typeahead-tag .icon {
    margin-right: 4px;
}


.typeahead-empty {
    font-size: 14px;
    color: var(--neutral-400);
    font-style: italic;
    text-align: center;
    padding: 4px 0 12px;
}

.typeahead-action {
    display: block;
    text-align: center;
    color: var(--neutral-600);
    font-weight: bold;
    border: 0;
    border-top: 1px solid var(--neutral-200);
    padding: 12px 0 8px;
    width: 100%;
    background: none;
    margin-top: 12px;
    font-size: 14px;
}

/*
    current design plan is to have all typeaheads
    be the new floating style but old screens haven't
    been updated yet
*/
.typeahead-oldschool {
    position: relative;
    padding: 0;
    border: 0;
    background: none;
    box-shadow: none;
    border-radius: 0;
}

.typeahead-oldschool .typeahead-suggestions-container-open {
    left: 4px;
    right: -4px;
    top: calc(100% - 2px);
}

.typeahead-footer-prompt {
    padding: 16px 16px 8px;
    margin-top: 8px;
    color: var(--neutral-500);
    font-style: italic;
    border-top: 1px solid var(--neutral-150);
    line-height: 16px;
    display: flex;
}

.typeahead-footer-prompt .icon {
    fill: currentColor;
    margin-right: 8px;
    flex-shrink: 0;
}

.typeahead-option-subtext {
    font-size: 12px;
    color: var(--neutral-400);
    margin-left: 8px;
}

.block-typeahead-wrap {
    margin-bottom: 16px;
}

.block-typeahead {
    position: relative;
    border: 0;
    box-shadow: none;
}


.block-typeahead .typeahead-suggestions-container-open {
    position: relative;
    border: 0;
    box-shadow: none;
    width: calc(100% + 32px);
    left: -16px;
    right: -16px;
    padding: 4px 0 0;
}

.block-typeahead-wrap .generic-tray-content,
.inline-typeahead-wrap .generic-tray-content {
    padding: 0;
}

.block-typeahead-wrap .typeahead-footer-prompt,
.inline-typeahead-wrap .typeahead-footer-prompt {
    padding-bottom: 0;
}

.block-input-wrap-error .block-tray-toggle-icon {
    fill: var(--red-700);
}

.workspace-user-list * {
    box-sizing: border-box;
}

.workspace-user-list .inline-tray-toggle {
    font-weight: normal;
}

.workspace-user-list .ReactVirtualized__Grid {
    border: 1px solid var(--neutral-150);
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
}

.workspace-user-list .ReactVirtualized__Table__row,
.workspace-user-list .ReactVirtualized__Table__rowColumn,
.workspace-user-list .ReactVirtualized__Table__headerRow {
    overflow: visible!important;
}

.workspace-user-list .ReactVirtualized__Table__headerRow {
    border: 1px solid var(--neutral-150);
    border-bottom: 0;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
}

.workspace-user-list .ReactVirtualized__Table__row:not(:last-child) {
    border-bottom: 1px solid var(--neutral-150);
}

.workspace-user-list .ReactVirtualized__Grid__innerScrollContainer {
    overflow: visible!important;
}

.workspace-user-list-cell-loading {
    width: calc(100% - 16px);
    height: calc(100% - 32px);
    background: linear-gradient(to right, var(--neutral-150), var(--neutral-000));
    border-radius: 4px;
}

.workspace-user-list .ReactVirtualized__Table__rowColumn {
    display: flex;
    align-items: center;
}

.workspace-user-list-profile {
    display: flex;
    align-items: center;
}

.workspace-user-list-profile-img {
    height: 32px;
    width: 32px;
    border-radius: 50%;
    margin-right: 16px;
}

.workspace-user-list-profile-name {
    font-size: 14px;
    line-height: 16px;
    font-weight: bold;
    margin-bottom: 2px;
}

.workspace-user-list-profile-email {
    color: var(--neutral-600);
    font-size: 12px;
    line-height: 14.4px;
}

.workspace-user-list-row-header {
    color: var(--neutral-600);
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 8px;
}

.workspace-user-list-name-input {
    width: 100%;
    height: 32px;
    border: 1px solid var(--neutral-150);
    border-radius: 4px;
    padding: 0 12px;
}

.workspace-user-list-name-input:focus,
.workspace-user-list-name-input:active,
.workspace-user-list-name-input:hover {
    outline: none;
    border-color: var(--active-700);
}

.workspace-user-list-count {
    color: var(--neutral-600);
    margin: 0 0 16px;
}

.workspace-user-list-cant-edit {
    color: var(--neutral-400);
    display: flex;
    align-items: center;
}

.workspace-user-list-cant-edit svg {
    fill: currentColor;
    margin-left: 4px;
}

.workspace-user-list-cant-edit + .tooltip-popper {
    max-width: 144px;
}

.workspace-user-list-counts {
    margin-bottom: 16px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    column-gap: 8px;
}

.workspace-user-list-count-wrap {
    border: 1px solid var(--neutral-150);
    border-radius: 4px;
    padding: 12px;
}

.workspace-user-list-count-value {
    font-size: 16px;
    font-weight: bold;
    color: var(--neutral-800);
}

.workspace-user-list-count-label {
    color: var(--neutral-600);
}

.workspace-user-list-modules-wrap {
    background-color: var(--neutral-000);
    border: 1px solid var(--neutral-150);
    border-radius: 8px;
    padding: 24px;
    background-image: url('/static/images/portrait-female-right-corner.svg');
    padding-right: 160px;
    background-position: 100% 100%;
    background-repeat: no-repeat;
    margin-bottom: 16px;
    font-size: 14px;
    color: var(--neutral-600);
}

.workspace-user-list-modules-wrap h3 {
    color: var(--neutral-800);
    font-size: 16px;
    font-weight: bold;
}

.workspace-user-list-modules-text {
    margin-bottom: 16px;
}

.workspace-user-list-modules-text h3 {
    margin: 16px 0;
}

.workspace-user-list-module-state {
    display: inline-flex;
    align-items: center;
}

.workspace-user-list-module-state svg {
    display: none;
}

.workspace-user-list-module-state-enabled svg {
    display: block;
    fill: var(--active-700);
    margin-right: 12px;
}

.workspace-user-list-module {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--neutral-white);
    border-bottom: 1px solid var(--neutral-000);
    max-width: 720px;
    padding: 8px 16px;
    color: var(--neutral-800);
}

.workspace-user-list-module-highlight {
    color: var(--red-700);
}

.workspace-user-list-module:first-child {
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
}

.workspace-user-list-module:last-child {
    border: 0;
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
    margin-bottom: 16px;
}

.workspace-user-list-modules-extra-content {
    margin-bottom: 32px;
}

.workspace-user-list-modules-extra-footer {
    margin-top: 32px;
}

.workspace-user-list-module-disabled {
    color: var(--neutral-400);
}

.ctc-self-signup-header {
    max-width: 1224px;
    margin: 0 auto 42px;
    padding: 24px;
}

.ctc-self-signup-wrap {
    max-width: 969px;
    margin: 0 auto;
}

.ctc-self-signup-title {
    text-align: center;
    font-weight: bold;
    margin: 40px 0 32px;
    font-size: 18px;
}

.ctc-self-signup-title-large {
    font-size: 24px;
}

.ctc-self-signup-radios {
    display: flex;
    gap: 8px;
}

.ctc-self-signup-radios .radio-group {
    flex: 1;
}

.ctc-self-signup-options {
    display: flex;
    margin: 32px 0;
    gap: 32px;
}

.ctc-self-signup-option {
    display: flex;
    flex-direction: column;
    border: 1px solid var(--neutral-200);
    border-radius: 8px;
    flex-basis: 50%;
    padding: 32px;
}

.ctc-self-signup-option-title {
    margin: 12px 0;
    font-size: 24px;
    font-weight: bold;
}

.ctc-self-signup-tag {
    padding: 6px 10px;
    border: 1px solid currentColor;
    font-weight: bold;
    border-radius: 4px;
    display: inline-block;
    font-size: 12px;
    line-height: 16px;
}

.ctc-self-signup-option-highlight {
    border-color: var(--active-700);
}

.ctc-self-signup-option-highlight .ctc-self-signup-tag {
    border-color: var(--active-700);
    border-width: 2px;
    padding: 5px 9px;
}

.ctc-self-signup-total {
    margin-bottom: 24px;
}

.ctc-self-signup-total-preheader {
    margin: 12px 0;
}

.ctc-self-signup-total-discount-text {
    color: var(--green-700);
}

.ctc-self-signup-total-price {
    font-weight: bold;
    margin: 12px 0 4px;
    font-size: 24px;
}

.ctc-self-signup-button {
    width: 100%;
    height: 40px;
}

.ctc-self-signup-option-footer {
    padding: 24px 32px 32px 32px ;
    margin: 32px -32px -32px -32px;
    background: var(--neutral-000);
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
    flex-grow: 1;
}

.ctc-self-signup-option-footer-title {
    margin: 16px 0;
    font-weight: bold;
}

.ctc-self-signup-option-footer ul {
    font-size: 12px;
    padding: 0;
    margin: 0;
    list-style-type: none;
}

.ctc-self-signup-option-footer li {
    margin-bottom: 6px;
    display: flex;
}

.ctc-self-signup-option-footer li:before {
    flex-shrink: 0;
    content: '';
    display: inline-block;
    margin-right: 8px;
    height: 8px;
    width: 8px;
    border-radius: 50%;
    background: var(--active-700);
    margin-top: 4px;
}

.ctc-self-signup-subtitle {
    margin: 32px auto;
    text-align: center;
    max-width: 640px;
    font-size: 16px;
}

.ctc-self-signup-sub {
    border: 1px solid var(--neutral-200);
    border-radius: 8px;
    padding: 24px;
    font-size: 16px;
    max-width: 400px;
    margin: 0 auto;
}

.ctc-self-signup-sub-title {
    font-weight: bold;
    font-size: 16px;
    margin-bottom: 24px;
    text-align: center;
}

.ctc-self-signup-sub-detail {
    display: flex;
    margin-bottom: 12px;
}

.ctc-self-signup-sub-detail-label,
.ctc-self-signup-sub-detail-value {
    flex-basis: 50%;
    font-size: 14px;
}

.ctc-self-signup-sub-detail-label {
    font-weight: bold;
}

.ctc-self-signup-modal {
    height: 100%;
    max-height: 800px;
}

.ctc-self-signup-modal-content {
    height: 100%;
    overflow: auto;
    padding: 40px;
    position: relative;
}

.ctc-self-signup-modal-footer {
    position: sticky;
    bottom: -40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--neutral-white);
    padding: 24px;
    box-shadow: 0px -4px 0px 0px var(--alpha-50);
    padding: 32px 40px;
    margin: 40px -40px -40px -40px;
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
}

.ctc-self-signup-modal-content h2,
.ctc-self-signup-modal-content h3,
.ctc-self-signup-modal-content .checkbox {
    font-weight: bold;
}

.ctc-self-signup-lfm {
    padding: 24px;
    border: 1px solid var(--neutral-200);
    border-radius: 8px;
    margin: 32px 0;
    text-align: center;
}

.ctc-self-signup-lfm-title {
    font-weight: bold;
    font-size: 24px;
}

.ctc-self-signup-lfm-body {
    margin: 24px auto;
    max-width: 430px;
}

.text-input-wrap:not(:last-child) {
    margin-bottom: 16px;
}

.text-input-label {
    display: block;
    font-size: 12px;
    margin-bottom: 8px;
}

.text-input {
    width: 100%;
    box-sizing: border-box;
    height: 32px;
    line-height: 16px;
    padding: 0 12px;
    border: 1px solid var(--neutral-200);
    border-radius: 4px;
    font-size: 14px;
    background: var(--neutral-white);
    color: var(--neutral-900);
}

.text-input::placeholder {
    color: var(--neutral-600);
}

.text-input[disabled] {
    color: var(--neutral-400);
    cursor: not-allowed;
    background: var(--neutral-050);
}

.text-input:hover {
    border-color: var(--neutral-400);
}

.text-input:focus {
    outline: none;
    border-color: var(--active-700);
}

.text-input-error {
    border-color: var(--red-700);
}

.inline-input {
    border: 1px solid var(--neutral-200);
    border-radius: 2px;
}

.time-input {
    white-space: nowrap;
}

.time-input-hours {
    margin-right: 8px;
}

.time-range-input-divier {
    display: block;
    margin: 8px 0;
    color: var(--neutral-600);
}

.stepper-input {
    white-space: nowrap;
}

.stepper-input-text {
    color: var(--neutral-800);
}

.stepper-input-controls {
    width: 16px;
    display: inline-flex;
    justify-content: space-between;
    align-items: center;
    margin-left: 6px;
}

.stepper-input-button {
    fill: var(--neutral-600);
    background: none;
    padding: 0;
    border: 0;
}

.select-option-wrap {
    margin: 0 -16px;
    display: block;
    cursor: pointer;
}

.select-option {
    padding: 0;
    background: none;
    white-space: nowrap;
    border: 0;
    border-left: 2px solid transparent;
    width: 100%;
    text-align: left;
    padding-right: 64px;
    height: 32px;
}

.select-option-wrap-header .select-option {
    color: var(--neutral-800);
    text-transform: uppercase;
    pointer-events: none;
    font-size: 10px;
    font-weight: bold;
    margin-left: -12px;
}

.generic-tray-content > .select-options {
    margin-top: -8px;
    margin-bottom: -8px;
}

.select-option-wrap:not(.select-option-wrap-disabled):hover {
    background: var(--neutral-000);
}

.select-option-wrap:not(.select-option-wrap-disabled):hover .select-option {
    border-color: var(--active-700);
}

.select-option {
    display: flex;
    align-items: center;
}

.select-option svg {
    fill: transparent;
    flex-shrink: 0;
}

.select-option-force-icon svg {
    fill: var(--neutral-200);
}

.select-option-force-icon:hover svg {
    fill: var(--neutral-600);
}

.select-option-selected svg {
    fill: var(--active-700);
}


.select-option-wrap-disabled * {
    color: var(--neutral-150);
    fill: transparent;
    cursor: not-allowed;
}

.select-option-icon-hidden {
    padding-left: 16px;
}

.select-option-details {
    color: var(--neutral-600);
    width: 224px;
    border-left: 2px solid transparent;
    padding-left: 32px;
    padding-right: 16px;
    padding-bottom: 16px;
    font-size: 12px;
}

.select-option-wrap:hover .select-option-details {
    border-color: var(--active-700);
}

.select-option-subtext {
    color: var(--neutral-600);
    font-size: 12px;
    margin-left: 8px;
}

.inline-text-form-input-wrap {
    display: flex;
    align-items: center;
}

.inline-text-form-button {
    border-radius: 50%;
    padding: 0;
    fill: var(--neutral-white);
    background: var(--neutral-200);
    border: 0;
    margin-left: 8px;
    display: inline-block;
    flex-shrink: 0;
}

.inline-text-form-button-submit {
    background: var(--green-500);
}

.inline-text-form-button:not(:disabled):not(.inline-text-form-button-error):hover {
    background: var(--active-700);
}

.inline-text-form-button:disabled {
    background: var(--neutral-200);
}

.inline-text-form-button-error {
    background: var(--red-700);
}

.inline-text-form-input-wrap .tooltip-popper {
    max-width: 120px;
}

.inline-text-form-input {
    height: 32px;
    width: 330px;
}

.card *,
.card *:before,
.card *:after {
    box-sizing: inherit;
}

.card {
    background-color: var(--neutral-white);
    border-radius: 8px;
    border: 1px solid var(--neutral-150);
    box-shadow:
        0 2px var(--alpha-50),
        0 2px 4px var(--alpha-50);
    display: block;
    margin-bottom:24px;
    font-size: 14px;
    box-sizing: border-box;
    position: relative;
}

.card-subtitle {
    margin-bottom: 12px;
}

.card-main {
    padding: 32px;
}

.card-footer-with-content {
    padding-top: 32px;
    border-top: 2px solid var(--neutral-100);
}

/* .card-main + .card-footer-with-content {
    padding-top: 0;
} */

.card-footer {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.card-footer-tray {
    background: var(--neutral-050);
    border-radius: 0 0 8px 8px;
    border-top: 2px solid var(--neutral-100);
}

.card-footer-toggler {
    white-space: nowrap;
    display: flex;
    position: relative;
    height: 36px;
}

.card-footer-toggler.popup-toggle-active::after {
    position: absolute;
    content: '';
    display: block;
    height: 2px;
    background: var(--active-600);
    bottom: -28px;
    right: 0;
    left: 0;
}

.card-footer-toggler-subhead {
    font-size: 12px;
}

.card-status-tags-header {
    font-weight: bold;
    font-size: 10px;
    color: var(--neutral-600);
    text-transform: uppercase;
    margin-bottom: 8px;
}

.card-also-in {
    padding: 32px;
}

.profile + .card-also-in {
    padding-top: 0;
}

.card-also-in-header {
    color: var(--neutral-600);
    font-size: 14px;
    margin-bottom: 8px;
}

.card-also-in-list {
    padding: 0;
    margin: 0;
    list-style: none;
}

.card-also-in-list-item {
    display: inline-block;
    height: 24px;
    white-space: nowrap;
    margin-right: 16px;
    font-weight: bold;
}

.card-also-in-list-item::before{
    content: '';
    display: inline-block;
    height: 6px;
    width: 6px;
    border-radius: 50%;
    margin-right: 8px;
    background-color: var(--teal-500);
}

.card-also-in-list-item .status-tag {
    margin-left: 8px;
}

.card-also-in-list-name {
    line-height: 24px;
    color: inherit;
}

a.card-also-in-list-name:hover {
    border-bottom: 1px solid var(--teal-500);
}

.card-also-in-list-item-undisclosed .card-also-in-list-name {
    color: var(--neutral-400);
    font-style: italic;
}

.card-footer-section {
    padding: 0 32px 24px 32px;
}

.card-footer-suggestion-actions {
    margin-left: auto;
    text-align: right;
}

.card-footer-suggestion-header {
    margin-bottom: 16px;
}

.card-footer-actions {
    display: flex;
}

.card-tabs {
    padding: 0 32px;
    box-shadow: 0 2px 0 var(--neutral-150);
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
    position: relative; /*forcing layer so box shadow overlaps stuff under it*/
}

.card-tab {
    padding: 24px 16px;
    cursor: pointer;
    display: inline-block;
    line-height: 16px;
}

.card-tab:first-child {
    padding-left: 0;
}

.card-tab:last-child {
    padding-right: 0;
}

.card-tab-icon {
    background: black;
    fill: white;
    border-radius: 50%;
    margin-right: 8px;
}

.card-tab-icon-recommended {
    background: var(--teal-500);
}

.card-tab-subtext {
    color: var(--neutral-500);
    margin-left: 8px;
}

.card-tab-active {
    box-shadow: 0 2px 0 var(--active-700);
}

.card-report-issue-option {
    margin-bottom: 8px;
}

.card-report-issue-details {
    margin-bottom: 24px;
}

.card-report-error {
    color: var(--red-700);
    margin-bottom: 24px;
}

.card-talent-link {
    margin: 24px 32px -8px;
}

.profile-contact-modal .modal-subheader {
    display: flex;
}

.profile-contact-button {
    margin: 0 auto 8px 0;
}

.profile-contact-add {
    cursor: pointer;
    margin: auto 0 auto auto;
    font-weight: normal;
}

.profile-contact-method-wrap {
    padding: 16px 8px 16px 16px;
    background: var(--neutral-050);
    border-bottom: 1px solid var(--neutral-200);
    display: flex;
}

form.profile-contact-method-wrap {
    padding: 16px;
}

.profile-contact-method-wrap:first-child {
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
}

.profile-contact-method-wrap:last-child {
    border-bottom-left-radius: 4px;
    border-bottom-right-radius: 4px;
    margin-bottom: 32px;
    border-bottom: 0;
}

.profile-contact-method {
    display: flex;
    width: 100%;
    height: 100%;
}

.checkbox.profile-contact-check {
    margin: auto 8px auto 0;
    display: flex;
}

.profile-contact-check .checkbox-label {
    vertical-align: middle;
}

.profile-contact-check .checkbox {
    margin-right: 12px;
}


.profile-contact-method-main {
    margin: auto auto auto 0;
    width: 220px;
}

.profile-contact-method-value,
.profile-contact-method-source {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.profile-contact-method-value {
    font-weight: bold;
}

.profile-contact-method-source {
    font-size: 12px;
}

.profile-contact-method-value a {
    color: inherit;
}

.profile-contact-method-value:hover a {
    text-decoration: underline;
}

.profile-contact-method-button {
    border: 0;
    background: var(--neutral-200);
    height: 24px;
    width: 24px;
    border-radius: 50%;
    padding: 0;
    margin-top: auto;
    margin-left: 12px;
}

.profile-contact-method-button + .profile-contact-method-button {
    margin-left: 8px;
}

.profile-contact-method-button:hover {
    background: var(--active-700);
}

.profile-contact-method-button .icon {
    height: 24px;
    width: 24px;
    padding: 2px;
}

.profile-contact-method-wrap .floating-input-wrap {
    flex-grow: 1;
    margin-right: 16px;
}

.profile-contact-method-action {
    cursor: pointer;
    border-radius: 50%;
    line-height: 0;
    height: 32px;
    width: 32px;
    line-height: 0;
}

.profile-contact-method-action:hover {
    background: var(--alpha-50);
}

.profile-contact-empty {
    line-height: 32px;
    color: var(--neutral-400);
}

.profile-contact-method-action {
    fill: var(--neutral-200);
}

.profile-contact-method-flag-placeholder {
    fill: var(--neutral-200);
}

.profile-contact-method-flag-placeholder-valid {
    fill: var(--green-500);
}

.profile-contact-method-flag-placeholder-invalid {
    fill: var(--red-700);
}

.profile-contact-preferred-toggle-active {
    fill: var(--green-500);
}

.profile-contact-method-verified {
    margin-right: auto;
    display: flex;
    align-items: center;
}

.profile-contact-method-verified-icon {
    fill :var(--active-700);
}

/*
 * These are fighting some obnoxiously specific hover/focus styling.
 * Would be good to go back and clean that up.
 */
.Select-option .profile-contact-method-flag-valid-icon.Select-option-icon.icon {
    fill: var(--green-500);
}

.Select-option .profile-contact-method-flag-invalid-icon.Select-option-icon.icon {
    fill: var(--red-700);
}

.profile-contact-modal .tooltip {
    max-width: 320px;
}

.profile-contact-info-tip {
    margin: auto 0 auto 8px;
}

.profile-contact-modal-submit-error {
    margin: -16px 0 24px;
    color: var(--red-700)
}

.profile-contact-request-access {
    color: var(--blue-800);
}

.project-tile {
    background-color: var(--neutral-white);
    border-radius: 5px;
    box-shadow:
        0 2px var(--alpha-50),
        0 2px 4px var(--alpha-50);
    padding: 24px 24px 24px 12px;
    margin-bottom: 24px;
    font-size: 14px;
    display: flex;
}

.project-tile-side {
    width: 32px;
    flex-shrink: 0;
    margin-right: 12px;
}

.project-tile-main {
    flex: 1;
}

.project-tile-star {
    margin-top: -4px;
    display: block;
}

.project-tile-name {
    font-size: 20px;
    font-weight: bold;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    margin-bottom: 8px;
}

.project-tile-name a {
    color: var(--neutral-750);
}

.project-tile-company {
    display: block;
    color: inherit;
    margin: 16px 0;
    font-weight: bold;
}

.project-tile:hover .project-tile-name a,
.project-tile:hover .project-tile-company {
    color: var(--blue-800);
}

.project-tile-row {
    margin-bottom: 8px;
    color: var(--neutral-600);
}

.project-tile-row-small {
    font-size: 12px;
}

.project-tile-row:last-child {
    margin-bottom: 0;
}

.project-tile-footer {
    margin-top: 24px;
    display: flex;
}

.project-tile-counts {
    text-align: right;
    margin-left: auto;
}

.project-tile-count {
    display: inline-block;
    margin-left: 40px;
}

.project-tile-count-value {
    font-size: 16px;
    color: var(--neutral-750);
    font-weight: bold;
}

.project-tile-count-label {
    font-size: 12px;
}

.project-sharing-button {
    margin-right: 16px;
}

.pick-child-porcto-wrap {
    margin-bottom: 24px;
    position: relative;
    z-index: 100;
}

.project-tile-avatars > * {
    vertical-align: middle;
}

.project-tile-participants {
    color: var(--neutral-white);
    pointer-events: none; /* disables animation */
}

.project-tile-participants .avatar-row-excess {
    color: var(--neutral-750);
    font-weight: normal;
}

.project-tile-owner {
    display: inline-flex;
    align-items: center;
    margin-right: 20px;
}

.project-tile-owner-avatar {
    height: 36px;
    width: 36px;
    margin-right: 8px;
    border-radius: 50%;
}

.project-tile-owner-details {
    color: var(--neutral-400);
    font-size: 12px;
}

.project-tile-owner-name {
    color: var(--neutral-750);
    font-size: 14px;
}

.project-tile-privacy-toggle {
    display: flex;
    align-items: center;
    margin: 32px 0 0;
}

.project-tile-privacy-toggle:empty {
    margin: 0;
}

.project-tile-privacy-toggle .privacy-status {
    margin: 0;
}

.project-tile-privacy-toggle .shared-project-pill {
    margin-top: 0;
    margin-bottom: 0;
}

.project-tile-contrib-link {
    margin-left: auto;
}

.project-tile-skills {
    margin: 12px 0 8px;
}

.project-tile-skill {
    display: inline-block;
    margin-right: 4px;
    margin-bottom: 4px;
    height: 24px;
    line-height: 24px;
    background: var(--neutral-100);
    border-radius: 4px;
    padding: 0 8px;
}

.project-tile-statuses {
    margin: 16px 0;
}

.project-status-pill {
    border: 1px solid var(--teal-200);
    white-space: nowrap;
    border-radius: 4px;
    padding: 0 10px;
    height: 26px;
    line-height: 26px;
    font-weight: bold;
    font-size: 12px;
    display: inline-block;
    flex-shrink: 0;
    margin-right: 4px;
}

.project-status-pill-red {
    border-color: var(--active-500);
}

.project-status-pill-green {
    border-color: var(--green-500);
}

.pick-child-porcto-wrap.disabled {
    pointer-events: none;
}
.pick-child-porcto-wrap.disabled svg {
    display: none;
}

.external-shared-list-header {
  background: var(--neutral-800);
  padding: 16px 0;
}

.external-shared-list-workspace,
.external-shared-list-description {
    color: var(--neutral-200);
    font-size: 20px;
}

.external-shared-list-title {
    color: var(--neutral-white);
    font-size: 28px;
    font-weight: bold;
    margin: 8px 0;
}

.external-shared-list-auth-wrap {
    min-height: 100vh;
    width: 100%;
    background: var(--neutral-150);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    box-sizing: border-box;
}

.external-shared-list-auth-form {
    margin: auto;
    max-width: 300px;
}

.external-shared-list-auth-header {
    font-size: 16px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 24px;
}

.external-shared-list-bad-auth {
    margin-top: 8px;
    color: var(--red-700);
    font-size: 14px;
    text-align: center;
}

.external-shared-list-auth-submit {
    margin-top: 24px;
}

.shared-list-password-content {
    padding-left: 32px;
    margin: 16px 0 24px;
}

.shared-list-password-content .text-input {
    max-width: 220px;
}

.shared-list-password-content .fancy-checkbox {
    margin: 16px 0;
}

.share-list-auth-toggle {
    margin: 16px 0;
}

.edit-share-tip {
    border: 1px solid var(--teal-500);
    border-radius: 4px;
    display: flex;
    align-items: center;
    margin: 16px 0;
    padding: 12px;
    gap: 12px;
}

.edit-share-tip svg {
    fill: var(--teal-500);
    flex-shrink: 0;
}

.share-config-sidebar-indented {
    padding-left: 20px;
    margin: 16px 0;
}

.share-config-sidebar-indented .fancy-checkbox {
    margin-bottom: 16px;
}

.edit-share-config-warning {
    color: var(--red-700);
    margin: 8px 0 16px;
}

.edit-share-title-desc {
    border-radius: 8px;
    background: var(--neutral-000);
    margin-bottom: 16px;
    padding: 24px;
}

.edit-share-title {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 8px;
}

.edit-share-desc {
    font-size: 20px;
    color: var(--neutral-600);
    margin-bottom: 16px;
}

.edit-share-details {
    margin-bottom: 24px;
}

.edit-share-button-row {
    margin-top: 32px;
}

.external-shared-list-filter-toggle {
    padding: 0;
    border: 0;
    color: var(--neutral-600);
    font-weight: bold;
    background: none;
    margin-bottom: 16px;
    display: block;
}

.external-shared-list-filter-toggle svg {
    fill: var(--active-700);
}

.external-share-powered-by-consider {
    display: none;
}

.external-shared-list-wrap .external-share-powered-by-consider {
    display: block;
    text-align: right;
    color: var(--neutral-400);
    margin-top: 24px;
}

@media (max-width: 600px) {
    .external-shared-list-wrap {
        padding: 0;
    }

    .external-shared-list-wrap .portfolio-job-filter-pills-wrapper {
        padding: 0 24px;
    }

    .external-shared-list-wrap .portfolio-jobs-filters {
        border-radius: 0;
    }

    .external-shared-list-wrap .talent-network-search-result.shared-list-card {
        border-radius: 0;
    }

    .external-shared-list-filter-toggle {
        margin-left: 8px;
    }

    .external-shared-list-wrap  .talent-network-card-emails {
        padding: 12px 16px;
    }
}

.external-shared-list-filters-hidden {
    display: none;
}


.generic-tray-content {
    position: absolute;
    background: var(--neutral-white);
    border: 1px solid var(--neutral-400);
    box-shadow: 0px 4px 0px var(--alpha-50);
    border-radius: 4px;
    padding: 16px;
    top: calc(100% + 8px);
    left: 0;
    z-index: 99;
    line-height: 1.2;
    font-size: 14px;
    min-width: 100%;
    box-sizing: border-box;
}

.inline-tray {
    position: relative;
}

.inline-tray-toggle {
    padding: 0;
    border: 0;
    background: none;
    font-weight: bold;
    color: var(--neutral-800);
    margin-right: 8px;
}

.inline-block-tray .inline-tray-toggle {
    display: inline-flex;
    justify-content: space-between;
    align-items: center;
    border: 1px solid var(--neutral-200);
    border-radius: 4px;
    height: 32px;
    padding: 0 12px;
    width: 100%;
    font-weight: normal;
}

.inline-block-tray .inline-tray-toggle:hover,
.inline-tray-open .inline-tray-toggle {
    border-color: var(--active-700);
}

.inline-block-tray {
    display: inline-block;
}

.inline-block-tray .generic-tray-content {
    top: calc(100% + 8px);
}

.inline-tray-toggle-icon {
    margin-left: 6px;
    fill: var(--neutral-600);
}

.inline-tray:hover .inline-tray-toggle-icon,
.inline-tray-open .inline-tray-toggle-icon {
    fill: var(--active-700);
}

.block-tray {
    position: relative;
    display: block;
}

.block-tray-toggle {
    width: 100%;
    text-align: left;
    background: none;
    border: 1px solid var(--neutral-200);
    border-radius: 4px;
    padding: 8px 12px;
    background: var(--neutral-white);
    outline: none;
}

.action-menu {
    position: relative;
    display: inline-block;
}

.action-menu-toggle {
    border-radius: 50%;
    border: 0;
    padding: 0;
    background: none;
    fill: var(--neutral-600);
}

.action-menu-toggle:hover {
    background: var(--neutral-100);
    fill: var(--neutral-800);
}

.action-menu-open .action-menu-toggle {
    background: var(--neutral-200)
}

.action-menu:not(.action-menu-left) .generic-tray-content,
.tray-right .generic-tray-content {
    right: 0;
    left: unset;
}

.block-tray-toggle::after {
    content: '';
    position: absolute;
    display: block;
    height: 2px;
    left: 12px;
    right: 12px;
    bottom: 0;
    background: var(--neutral-200);
}

.block-tray-label {
    color: var(--neutral-600);
    font-size: 12px;
    line-height: 14px;
    margin-bottom: 8px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.block-tray-toggle-icon {
    margin-left: 12px;
    fill: var(--neutral-600);
    flex-shrink: 0;
}

.block-tray-value-label {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.block-tray-value-label-text {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.block-tray-toggle:focus::after,
.block-tray-open .block-tray-toggle::after,
.block-tray-toggle:hover::after {
    background: var(--active-700);
}

.block-tray-toggle:focus .block-tray-toggle-icon,
.block-tray-open .block-tray-toggle .block-tray-toggle-icon,
.block-tray-toggle:hover .block-tray-toggle-icon {
    fill: var(--active-700);
}

.workspace-tags-row {
    margin-bottom: 12px;
}

.workspace-tag-wrap {
    position: relative;
    display: inline-block;
    margin-right: 4px;
    margin-bottom: 4px;
}

.workspace-tag {
    display: inline-flex;
    border: 1px solid var(--teal-200);
    background: var(--teal-050);
    border-radius: 4px;
    color: var(--neutral-600);
    font-weight: bold;
    padding: 4px 4px 4px 8px;
    font-size: 12px;
    line-height: 16px;
    cursor: pointer;
}

.workspace-tag-subtext {
    font-weight: normal;
    margin-right: 4px;
}

.workspace-tag-external {
    background-color: var(--pink-050);
    border-color: var(--pink-200);
}

.workspace-tag-readonly {
    padding: 4px 8px;
}

.workspace-tag:not(.workspace-tag-readonly):hover {
    border-color: var(--teal-200);
    background: var(--teal-050);
}

.workspace-tag-external:not(.workspace-tag-readonly):hover {
    border-color: var(--pink-200);
    background: var(--pink-050);
}

.workspace-tag-active {
    border-color: var(--teal-500);
    background: var(--teal-050);
    color: var(--neutral-800);
}

.workspace-tag-external.workspace-tag-active {
    border-color: var(--pink-500);
    background: var(--pink-050);
    color: var(--neutral-800);
}

.workspace-tag-tray {
    min-width: 176px;
}

.workspace-tag-dots {
    fill: var(--teal-200);
    margin-left: 4px;
}

.workspace-tag-external .workspace-tag-dots {
    fill: var(--pink-200);
}

.workspace-tag-external.workspace-tag-active .workspace-tag-dots {
    fill: var(--pink-500);
}

.workspace-tag-meta {
    border-bottom: 1px solid var(--neutral-150);
    margin: 0 -16px 0;
    padding: 0 16px 12px;
    color: var(--neutral-600);
    font-size: 12px;
    line-height: 16px;
}

.workspace-tag-meta + .select-options {
    margin-top: 8px;
}

.workspace-tag-meta:only-child {
    border-bottom: 0;
    margin-bottom: 0;
    padding-bottom: 8px;
}

.workspace-tag-creator {
    font-weight: bold;
}

.add-tag-button.block-typeahead-wrap {
    margin-bottom: 0;
    position: relative;
}

.add-tag-button .typeahead {
    min-width: 328px;
}

.workspace-tags-table-creator-email {
    font-size: 12px;
    color: var(--neutral-600);
}

.workspace-tags-table .workspace-tag-wrap {
    margin-bottom: 0;
}

.tag-delete-info {
    border: 1px solid var(--neutral-200);
    padding: 12px 16px;
    margin: 16px 0;
    border-radius: 8px;
}

.tag-delete-label {
    font-weight: bold;
    margin-bottom: 4px;
}

.tab-delete-profile-count {
    color: var(--neutral-600);
}

.workspace-tag-create-new-wrap {
    position: relative;
    margin-top: 32px;
}

.workspace-tag-create-new-wrap {
    max-width: 328px;
}

.create-new-tag-autocomplete-option {
    padding-top: 8px;
    padding-bottom: 8px;
    line-height: 14.4px;
}

.create-new-tag-autocomplete-text {
    font-size: 12px;
    color: var(--neutral-600);
    margin-bottom: 6px;
}

.tag-share-wrap {
    border: 1px solid var(--neutral-200);
    border-radius: 4px;
    padding: 12px 16px;
    margin: 16px 0 32px;
}

.tag-share-text {
    color: var(--neutral-600);
    margin-top: 4px;
}

.consider-loader-wrapper {
    padding: 50px;
    box-sizing: border-box;
}
.consider-loader {
    margin: 0 auto;
    height: 75px;
    width: 75px;
}

.consider-loader-inner {
    height: 100%;
    width: 100%;
    transform-origin: center;
    transform: scale(1.5);
    position: relative;
    opacity: 0.25;
}

.consider-loader-piece {
    height: 17.3205%; /* sqrt(3) * 100% */
    width: 17.3205%;
    left: 41.33975%; /* 50% - (17.32/2) */
    top: 41.33975%;
    position: absolute;
    animation-duration: 0.65s;
    animation-timing-function: cubic-bezier(0.4, 0, 0, 1);
    animation-iteration-count: infinite;
    animation-direction: alternate;
    background: var(--neutral-black);
}

.consider-loader-piece:nth-child(1) {
    animation-name: loader-one;
}

.consider-loader-piece:nth-child(2) {
    animation-name: loader-two;
    animation-delay: 0.065s;
}

.consider-loader-piece:nth-child(3) {
    animation-name: loader-three;
    animation-delay: 0.13s;
}

.consider-loader-piece:nth-child(4) {
    animation-name: loader-four;
    animation-delay: 0.195s;
}

.consider-loader-piece:nth-child(5) {
    animation-name: loader-five;
    animation-delay: 0.26s;
}

.consider-loader-piece:nth-child(6) {
    animation-name: loader-six;
    animation-delay: 0.325s;
}

/* translateAmount = (3 * sqrt(3) * 10,000%) / 2 */
@keyframes loader-one {
    0% {
        transform: rotate(30deg) translateY(0);
    }
    95% {
        transform: rotate(30deg) translateY(-129.904%);
    }
    100% {
        transform: rotate(30deg) translateY(-129.904%);
    }
}

@keyframes loader-two {
    0% {
        transform: rotate(-30deg) translateY(0);
    }
    95% {
        transform: rotate(-30deg) translateY(-129.904%);
    }
    100% {
        transform: rotate(-30deg) translateY(-129.904%);
    }
}

@keyframes loader-three {
    0% {
        transform: translateX(0);
    }
    95% {
        transform: translateX(-129.904%);
    }
    100% {
        transform: translateX(-129.904%);
    }
}

@keyframes loader-four {
    0% {
        transform: rotate(30deg) translateY(0);
    }
    95% {
        transform: rotate(30deg) translateY(129.904%);
    }
    100% {
        transform: rotate(30deg) translateY(129.904%);
    }
}

@keyframes loader-five {
    0% {
        transform: rotate(-30deg) translateY(0);
    }
    95% {
        transform: rotate(-30deg) translateY(129.904%);
    }
    100% {
        transform: rotate(-30deg) translateY(129.904%);
    }
}

@keyframes loader-six {
    0% {
        transform: translateX(0);
    }
    95% {
        transform: translateX(129.904%);
    }
    100% {
        transform: translateX(129.904%);
    }
}

.small-loader {
    fill: currentColor;
    animation: icon-spin 1s linear infinite;
}

@keyframes small-loader {
    0% {
        transform: rotate(0);
    }
    100% {
        transform: rotate(360deg);
    }
}

.add-to-list-tray {
    width: 100%;
    height: 210px;
    overflow-y: auto;
    padding: 24px 32px;
    font-size: 14px;
}

.add-to-list-top-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    margin-right: -8px; /* helps visually align plus icon */
}

.add-to-list-header {
    font-size: 14px;
}

.add-to-list-options {
    list-style: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    margin: 0 -10px -10px 0;
}

.add-to-list-option-wrap {
    /* If you change the number of columns here
     * you also need to update getDelay in the
     * AddToList component.
     */
    width: calc((100% / 3) - 10px);
    margin: 0 10px 10px 0;
    transform: translateY(250%);
    opacity: 0;
    will-change: transform, opacity;
    animation: translate-opacity-reset 0.35s cubic-bezier(0.4, 0, 0, 1.15) forwards;
}

.add-to-list-option-wrap:hover {
    /* needed for tooltips */
    z-index: 1;
}

.add-to-list-option {
    border-radius: 2px;
    background: var(--neutral-white);
    color: var(--neutral-750);
    height: 50px;
    display: flex;
}

.add-to-list-option-main {
    padding: 5px;
    display: flex;
    flex-grow: 1;
    color: inherit;
    overflow: hidden;
}

.add-to-list-option-view {
    line-height: 50px;
    padding: 0 16px;
    flex-shrink: 0;
    border-radius: 0 2px 2px 0;
    text-align: center;
    color: var(--neutral-400);
    font-size: 12px;
    display: none;
}

.add-to-list-option:hover .add-to-list-option-view {
    display: block;
}

.add-to-list-option-view:hover {
    color: var(--neutral-600);
    background: var(--neutral-100);
}

.add-to-list-option-saved {
    background: var(--teal-050);
}

.add-to-list-option-main:hover {
    border-left: 3px solid var(--active-700);
    margin-left: -3px;
}

.add-to-list-icon.icon {
    height: 32px;
    width: 32px;
    display: block;
    flex-shrink: 0;
    margin: auto 5px auto 0;
}

.add-to-list-option-wrap .list-toggler {
    width: 100%;
}

.add-to-list-info {
    margin: auto 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.add-to-list-title {
    font-weight: bold;
    font-size: 14px;
}

.add-to-list-byline {
    font-size: 13px;
}

.active-profile-list-toggler {
    height: 32px;
    width: 32px;
}

.active-profile-list-tray {
    background: var(--neutral-050);
}

.add-to-sequence-single-popup {
    text-align: left;
    z-index: 100;
    width: 352px;
    height: auto;
    background: var(--neutral-white);
    min-height: 250px;
    border: 1px solid var(--neutral-400);
    box-sizing: border-box;
    box-shadow: 0px 4px 0px var(--alpha-50);
    border-radius: 8px;
    padding: 16px;
}

.add-to-sequence-single-popup > * {
    margin-top: 16px;
}
.add-to-sequence-single-popup > :first-child {
    margin-top: 0;
}

.floating-input-wrap + .floating-input-wrap {
    margin-top: 16px;
}

.floating-input-content {
    position: relative;
    font-size: 14px;
    box-sizing: border-box;
    height: 56px;
    padding: 12px 12px 10px;
    display: flex;
    border: 1px solid var(--neutral-200);
    border-radius: 4px;
    color: var(--neutral-900);
    background: var(--neutral-white);
}

.floating-input-content::after {
    content: '';
    position: absolute;
    display: block;
    height: 2px;
    left: 12px;
    right: 12px;
    bottom: -1px;
    background: var(--neutral-200);
}

.floating-input-content:focus-within,
.floating-input-wrap:focus .floating-input-content {
    box-shadow: 0 0 0 2px var(--alpha-200);
}

.floating-input-content:focus-within::after,
.floating-input-content:hover::after {
    background: var(--active-700);
}

.floating-input-wrap-error .floating-input-content::after {
    background: var(--red-700);
}

.floating-input-wrap-success .floating-input-content::after {
    background: var(--green-500);
}

.floating-input-text-mask {
    margin-top: auto;
    line-height: 16px;
    color: var(--neutral-300);
}

.floating-input-field {
    margin-top: auto;
    width: 100%;
    border: 0;
    padding: 0;
    background: none;
    outline: none;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 16px;
}

.floating-input-label {
    font-size: 14px;
    position: absolute;
    left: 12px;
    bottom: 10px;
    pointer-events: none;
    transform-origin: left;
    color: var(--neutral-600);
    will-change: transform;
    transition: transform 0.1s cubic-bezier(0.4, 0, 0, 1);
}

.floating-input-field:disabled {
    cursor: not-allowed;
    color: var(--neutral-400);
}

.floating-input-field:focus ~ .floating-input-label,
.floating-input-field-has-content ~ .floating-input-label {
    /**
     * scaling from 14px to 12px font size, not animating
     * actual font size for perf reasons.
     */
    transform: translateY(-20px) scale(0.857);
}

.floating-input-icon {
    margin-top: auto;
    flex-shrink: 0;
}

.floating-input-message {
    margin-left: 12px;
    margin-top: 4px;
    font-size: 12px;
}

.floating-input-wrap-error .floating-input-message {
    color: var(--red-700);
}

.floating-input-action-button {
    border-radius: 99px;
    border: 1px solid var(--neutral-200);
    font-size: 13px;
    line-height: 15px;
    padding: 6px 16px;
    background: var(--neutral-white);
}

.floating-input-wrap:hover .floating-input-action-button {
    border-color: var(--active-700);
}

.floating-input-wrap-error .floating-input-action-button {
    border-color: var(--red-700);
}

.floating-input-wrap-error .floating-input-icon {
    fill: var(--red-700);
}

.floating-input-wrap-success .floating-input-icon {
    fill: var(--green-500);
}

.user-pill {
    height: 36px;
    display: inline-flex;
    padding: 2px;
    background: var(--neutral-050);
    border-radius: 36px;
    align-items: center;
    margin-right: 4px;
    margin-bottom: 4px;
}

.user-pill-clickable {
    cursor: pointer;
}

.user-pill-orange {
    background: var(--active-100);
}

.user-pill-error {
    background: var(--active-200);
}

.user-pill:focus {
    box-shadow: 0 0 0 2px var(--alpha-200);
    outline: none;
}

.user-pill-selected {
    background: var(--neutral-200);
}

.user-pill-disabled {
    padding: 0;
    border: 2px solid var(--neutral-150);
    cursor: auto;
    background: none;
    color: var(--neutral-400);
}

.user-pill-disabled .user-pill-avatar-wrap {
    opacity: 0.5;
}

.user-pill-orange.user-pill-selected {
    background: var(--active-600);
}

.user-pill-error.user-pill-selected {
    background: var(--red-700);
}


.user-pill-avatar {
    border-radius: 50%;
    height: 32px;
    width: 32px;
    margin-right: 8px;
    padding: 2px;
}

.icon.user-pill-avatar {
    fill: var(--neutral-400);
}

.user-pill-orange .icon.user-pill-avatar {
    fill: var(--active-600);
}

.user-pill-avatar-wrap {
    flex-shrink: 0;
    position: relative;
}

.user-pill-icon-wrap {
    position: absolute;
    display: flex;
    height: 28px;
    width: 28px;
    left: 4px;
    top: 4px;
    transform: scale(0);
    will-change: transform;
    animation: user-pill-icon-zoom 0.085s cubic-bezier(0.0, 0.0, 0.2, 1) forwards;
    border-radius: 50%;
}

.user-pill-selected .user-pill-icon-wrap {
    background: var(--neutral-400);
    fill: var(--neutral-050);
}

.user-pill-icon {
    margin: auto;
}

@keyframes user-pill-icon-zoom {
    100% {
        transform: scale(1);
    }
}

.user-pill-orange .user-pill-icon-wrap {
    background: var(--active-100);
    fill: var(--active-600);
}

.user-pill-error .user-pill-icon-wrap {
    background: var(--red-700);
    fill: var(--active-200);
}

.user-pill-error.user-pill-selected .user-pill-icon-wrap {
    fill: var(--red-700);
    background: var(--active-200);
}

.user-pill-name:last-child {
    padding-right: 16px;
}

.user-pill-subtext {
    font-size: 10px;
    text-transform: uppercase;
    color: var(--neutral-400);
    padding-left: 12px;
    padding-right: 16px;
}

.user-pill-remove {
    flex-shrink: 0;
    padding-left: 4px;
    padding-right: 8px;
    border: 0;
    background: none;
    outline: none;
    fill: var(--neutral-400);
}

.user-pill-orange .user-pill-remove {
    fill: var(--active-600);
}

.user-pill-orange.user-pill-selected .user-pill-remove {
    fill: var(--active-100);
}

.user-pill-error .user-pill-remove {
    fill: var(--red-700);
}

.user-pill-error.user-pill-selected .user-pill-remove {
    fill: var(--active-200);
}

.added-project-entry,
.add-to-project-tray-header {
    padding: 16px 24px;
}

.add-to-project-tray-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.added-project-entry {
    display: flex;
    align-items: center;
}

.added-project-check {
    fill: var(--neutral-400);
    margin-right: 12px;
}

.added-project-entry-meta + .added-project-entry-meta::before {
    content: '·';
    display: inline-block;
    margin: 0 8px;
}

.added-project-entry-meta-secondary {
    color: var(--neutral-600);
}

.add-to-project-tray-header:not(:last-child),
.added-project-entry:not(:last-child) {
    border-bottom: 1px solid var(--neutral-150);
}

.added-project-remove {
    margin-left: auto;
    flex-shrink: 0;
}

.added-project-remove-icon {
    cursor: pointer;
    fill: var(--neutral-400);
}

.added-project-remove-confirm-label {
    color: var(--neutral-600);
}

.added-project-remove-confirm-option {
    cursor: pointer;
    color: var(--blue-800);
}

.added-project-remove-confirm-label,
.added-project-remove-confirm-option:not(:last-child) {
    margin-right: 16px;
}

.add-to-project-tray-button-wrap {
    position: relative;
}

.add-to-project-tray-button-wrap .typeahead {
    width: 400px;
    right: 0;
    top: calc(100% + 8px);
}

.project-typeahead-entry {
    line-height: 16px;
    padding-top: 12px;
    padding-bottom: 12px;
}

.project-typeahead-entry-name {
    margin-bottom: 2px;
    font-weight: bold;
    color: var(--neutral-800);
}

.project-typeahead-entry-meta-item + .project-typeahead-entry-meta-item::before {
    content: '·';
    display: inline-block;
    margin: 0 4px;
}

.project-typeahead-entry-meta-item {
    font-size: 12px;
    color: var(--neutral-600);
}

.add-to-project-tray-button {
    background: none;
    border: 0;
    padding: 0;
    display: inline-flex;
    align-items: center;
    font-weight: bold;
}

.add-to-project-tray-button svg {
    fill: var(--active-700);
    margin-right: 8px;
}

.loading-project-block {
    height: 16px;
    width: 100px;
    background: var(--neutral-100);
    border-radius: 2px;
    overflow: hidden;
}

.loading-project-block-wide {
    width: 200px;
}

.loading-project-block + .loading-project-block {
    margin-left: 4px;
}

.loading-project-block::before {
    content :'';
    display: block;
    height: 100%;
    width: 200%;
    will-change: transform;
    background: linear-gradient(to left, transparent, var(--alpha-50), transparent);
    animation: loading-project-animation 1s linear infinite;
}

@keyframes loading-project-animation {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

.ReactModal__Body--open {
    overflow: hidden;
}

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 20px;
    background: var(--alpha-700);
    display: flex;
    z-index: 99;
    overflow: auto;
}

.modal-opaque.modal-overlay {
    background: var(--neutral-black);
}

.modal {
    margin: auto;
    outline: none;
    background-color: var(--neutral-white);
    border-radius: 5px;
    width: 940px;
    max-width:100%;
    font-size: 14px;
    position: relative;
}

.modal.modal-scrolling {
    height: 100%;
}

.modal-scrolling .modal-scrolling-wrapper {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.modal-scrolling .modal-scrolling-sticky-footer {
    flex-shrink: 0;
    box-shadow: 0px -4px 0px var(--alpha-50);
    padding: 32px;
}

.modal-scrolling .modal-scrolling-area {
    flex-shrink: 1;
    flex-grow: 1;
    overflow-y: auto;
    padding: 32px;
}

.modal {
    box-sizing: border-box;
}

.modal *, .modal *:before, .modal *:after {
    box-sizing: inherit;
}

.modal-medium {
    width: 704px;
}

.modal-small {
    width: 600px;
}

.modal-xs {
    width: 384px;
}

.modal-preheader {
    color: var(--neutral-400);
    margin-bottom: 8px;
}

.modal-header {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 24px;
}

.modal-subheader {
    font-size: 16px;
    font-weight: bold;
    margin: 24px 0 16px;
}

.modal-padded {
    padding: 32px;
}

.modal-tab-links {
    border-bottom: 1px solid var(--neutral-150);
    margin-bottom: 24px;
}

.modal-tab-link {
    border: 0;
    background: none;
    border-bottom: 2px solid transparent;
    margin-bottom: -1px;
    padding: 12px 0;
    font-weight: bold;
    color: var(--neutral-600);
    outline: none;
    display: inline-flex;
    align-items: center;
}

.modal-tab-link-icon {
    margin-right: 8px;
    border-radius: 50%;
    fill: var(--neutral-white);
}

.modal-tab-link-success .modal-tab-link-icon {
    background: var(--green-500);
}

.modal-tab-link-info .modal-tab-link-icon {
    background: var(--teal-500);
}

.modal-tab-link-error .modal-tab-link-icon {
    background: var(--red-700);
}

.modal-tab-link + .modal-tab-link {
    margin-left: 32px;
}

.modal-tab-link-active {
    border-color: var(--active-700);
    color: var(--neutral-800);
}

.modal-full-height {
    height: 100%;
    overflow: auto;
}

.modal-auto-size {
    width: auto;
}

.sequence-gen-edit-sender-link {
    float: right;
    font-size: 14px;
    line-height: 16px;
    font-weight: normal;
}

.radio {
    margin-right: 8px;
}

.radio-input {
    opacity: 0;
    position: absolute;
    width: 0;
    height: 0;
    pointer-events: none;
}

.radio-label {
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    font-size: 14px;
}

.radio-sub-label {
    color: var(--neutral-600);
    margin-left: 8px;
}

.radio-dot {
    display: inline-block;
    border: 2px solid var(--neutral-400);
    border-radius: 50%;
    margin-right: 8px;
    line-height: 0;
    padding: 2px;
    height: 18px;
    width: 18px;
}

.radio-dot-fill {
    display: inline-block;
    height: 100%;
    width: 100%;
    border-radius: 50%;
}

.radio-input:checked + .radio-label .radio-dot {
    border-color: var(--active-600);
}

.radio-input:checked + .radio-label .radio-dot-fill {
    background-color: var(--active-600);
}

.block-radio {
    background: var(--neutral-000);
    border-radius: 4px;
    padding: 16px;
    margin-bottom: 8px;
}

.block-radio-content {
    padding-left: 24px;
    margin: 16px 0;
}

.block-radio-header {
    background: var(--purple-100);
    padding: 12px 16px;
    margin: -16px -16px 16px;
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
    font-weight: bold;
    display: inline-flex;
    align-items: center;
    width: calc(100% + 32px);
}

.block-radio-header-text {
    margin-left: 16px;
}

.block-radio-badge {
    border-radius: 2px;
    color: var(--purple-700);
    border: 1px solid currentColor;
    padding: 4px 8px;
    margin-left: auto;
    font-size: 12px;
}

.radio-group {
    display: inline-flex;
    background: var(--neutral-100);
    border-radius: 99px;
    padding: 8px 8px 8px 24px;
    align-items: center;
    gap: 16px;
    line-height: 18px;
}

.radio-group-label {
    color: var(--neutral-600);
    text-transform: uppercase;
}

.radio-group-options {
    display: flex;
}

.radio-group-option {
    font-weight: bold;
    padding: 7px 16px;
    cursor: pointer;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}

.radio-group-option-selected {
    border-radius: 99px;
    background: var(--neutral-white);
    border: 2px solid var(--active-700);
    padding: 5px 14px;
}

.radio-group-disabled .radio-group-option {
    pointer-events: none;
    background: none;
    border-color: transparent;
    color: var(--neutral-400);
}

.app-header {
  position: relative;
  background: var(--neutral-white);
  color: var(--neutral-800);
}

.app-header-content {
    position: relative;
    display: block;
}

.app-header, .app-header-fixed-content {
  border-bottom: 2px solid var(--neutral-150);
  background: var(--neutral-white);
}

.app-header-fixed-content {
  position: absolute;
  bottom: 0;
  left: 192px;
  right: 0;
  height: 62px;
  opacity: 0;
  z-index: -1;
}

.app-header-fixed-content .app-content-wrap {
  display: flex;
  align-items: center;
}

.app-header-fixed .app-header-fixed-content {
    z-index: 99;
    opacity: 1;
    position: fixed;
    top: 0;
    bottom: auto;
}

.app-header-pre-text {
  padding-top: 24px;
  font-size: 16px;
  margin-bottom: -20px;
}

.app-header-pre-text a {
  color: inherit;
}

.app-header-prehead {
    padding-top: 24px;
}

.app-header-prehead a {
    color: inherit;
}

.app-header-prehead a:not(:last-child)::after {
    content: '·';
    display: inline-block;
    margin: 0 8px;
}

.app-header-main-text,
.app-header-main-text-wrapper {
  padding: 52px 32px 32px 0;
}

.app-header-main-text-wrapper .app-header-main-text {
    padding: 0;
}

.app-header-prehead + .app-header-main-text,
.app-header-prehead + .app-header-main-text-wrapper {
    padding-top: 8px;
}

.app-header-main-text {
  font-size: 24px;
  margin: 0;
  font-weight: bold;
}

.app-header-main-text-wrapper {
    display: flex;
    align-items: center;
}

.app-header-breadcrumb {
  display: flex;
  align-items: center;
  font-weight: bold;
}

.app-header-breadcrumb-caret {
  margin: 0 8px;
  color: var(--neutral-400);
}

.app-header-breadcrumb-item {
  font-size: 16px;
  color: var(--neutral-600);
}

.app-header-breadcrumb-item-active {
  color: var(--neutral-800);
}

.app-header-tab {
    font-size: 16px;
    line-height: 16px;
    font-weight: bold;
    padding-bottom: 12px;
    margin-right: 32px;
    border-bottom: 2px solid transparent;
    color: var(--neutral-600);
    display: inline-block;
    margin-bottom: -2px;
}

.app-header-tab-subtext {
    font-size: 14px;
    color: var(--neutral-400);
    margin-left: 8px;
}

.app-header-tab-active {
    color: var(--neutral-800);
    border-color: var(--active-700);
}

.app-header .action-menu {
    position: absolute;
    width: 32px;
    height: 32px;
    top: 48px;
    right: 24px;
}

.workspace-notes-list {
    border-radius: 8px;
}

.workspace-notes-list-inner {
    height: 100%;
    margin-top: 16px;
}

.workspace-notes-list-read-only .workspace-notes-list-inner {
    margin-bottom: 16px;
    overflow: auto;
    max-height: 220px;
}

.workspace-notes-list-inner::-webkit-scrollbar {
    background: var(--neutral-100);
    width: 4px;
}

.workspace-notes-list-inner::-webkit-scrollbar-thumb {
    background: var(--active-700);
}

.workspace-note {
    padding: 8px 24px;
}

.workspace-note:last-child {
    padding-bottom: 16px;
}

.workspace-notes-list-read-only .workspace-note:last-child {
    padding-bottom: 0;
}


.workspace-note:first-child {
    padding-top: 0;
}

.workspace-note-top {
    display: flex;
    align-items: center;
    gap: 8px;
}

.workspace-note-avatar {
    border-radius: 50%;
    height: 24px;
    width: 24px;
    flex-shrink: 0;
}

.workspace-note-owner {
    font-weight: bold;
}

.workspace-note-viewable-by,
.workspace-note-timestamp {
    color: var(--neutral-600);
}

.workspace-note-select-wrap .inline-tray-toggle {
    margin-right: 0;
}

.workspace-note-text {
    padding-left: 32px;
}

.workspace-note-text *:first-child {
    margin-top: 0;
}

.workspace-note-text *:last-child {
    margin-bottom: 0;
}

.workspace-note-form {
    padding: 24px 16px;
    background: var(--neutral-000);
}

.workspace-note-form-editing {
    padding: 16px 24px;
    margin: 8px 0;
}

.workspace-note-form-editing:last-child {
    margin-bottom: 0;
}

.talent-network-search-result-tray .workspace-note-form:last-child {
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
}

.talent-network-search-result-tray .workspace-note-form:only-child {
    border-radius: 8px;
}

.workspace-note-action {
    color: var(--blue-800);
    display: inline-block;
    cursor: pointer;
}

.workspace-note:not(:hover) .workspace-note-delete {
    display: none;
}

.workspace-note-project-nudge {
    margin-left: 8px;
}

.workspace-notes-empty {
    color: var(--neutral-600);
    padding: 16px 24px;
}

.workspace-note-hidden {
    display: flex;
    align-items: center;
}

.workspace-note-hidden .workspace-note-action {
    margin-left: 8px;
}

.workspace-note-hidden-icon {
    fill: var(--red-700);
    margin-right: 4px;
    border: 1px solid var(--red-700);
    border-radius: 50%;
}

.profile-evidence {
    margin: 24px -32px 18px;
    background: var(--neutral-050);
    padding: 20px 30px;
    box-shadow: inset 2px 0 var(--teal-200);
}

.evidence-header {
    font-size: 16px;
    font-weight: bold;
    color: var(--neutral-750);
    margin-bottom: 16px;
}

.evidence-wrap {
    margin-bottom: 10px;
    position: relative;
}

.evidence-wrap-has-icon {
    margin-bottom: 30px;
}

.evidence-wrap-has-icon + .evidence-wrap-has-icon {
    margin-top: -20px;
}

.evidence-wrap:last-child {
    margin-bottom: 0;
}

.evidence-content::before {
    content: '';
    display: block;
    height: 8px;
    width: 8px;
    position: absolute;
    background: var(--active-700);
    left: 4px;
    top: 6px;
    border-radius: 50%;
}

.evidence-wrap-has-icon .evidence-content::before {
    content: none;
}

.evidence-content-icon {
    position: absolute;
    left: -8px;
}

.evidence-content {
    font-size: 14px;
    line-height: 20px;
    padding-left: 20px;
    color: var(--neutral-600);
}

.evidence-content p {
    margin: 8px 0;
}

.evidence-content a {
    font-size: inherit;
    color: inherit;
    border-bottom: 1px solid var(--active-700);
}

.evidence-content h5 {
    font-size: 16px;
    color: var(--neutral-750);
}

.evidence-wrap-publication .evidence-content h5 + p {
    margin-top: 0;
}

.evidence-content strong {
    color: var(--neutral-750);
}

.evidence-wrap-has-icon .evidence-content {
    padding-left: 28px;
}

.evidence-content > *:first-child {
    margin-top: 0;
}

.evidence-content > *:last-child {
    margin-bottom: 0;
}

.labels {
    display: flex;
    flex-wrap: wrap;
    flex: 0 0 auto;
}

.profile-label {
    text-overflow: ellipsis;
    white-space: nowrap;
    display: block;
    padding: 0 4px 0 12px;
    height: 36px;
    line-height: 36px;
    margin-right: 4px;
    margin-bottom: 4px;
    background: var(--neutral-050);
    color: var(--neutral-750);
    font-size: 14px;
    border-radius: 2px;
}

.profile-label-tier-0,
.profile-label-tier-1 {
    font-weight: bold;
}

.profile-label:not(.profile-label-evidence) {
    border: 0;
    padding: 0 12px;
}

.label-body {
    margin-right: 2px;
}

.label-chevron {
    margin-bottom: 1px;
}

.profile-label-expanded,
.profile-label-evidence:hover {
    text-shadow: var(--neutral-750) 0.3px 0 0;
    background: var(--teal-050);
}

.rdw-editor-wrapper {
    border: 1px solid var(--neutral-200);
    border-radius: 4px;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.rdw-editor-toolbar {
    margin-bottom: 0;
    border: 0;
    border-bottom: 1px solid var(--neutral-150);
    background: none;
    padding: 8px;
    flex-shrink: 0;
}

.rdw-editor-main {
    border: 0;
    flex-grow: 1;
    padding: 0;
}

.rdw-inline-wrapper,
.rdw-block-wrapper,
.rdw-list-wrapper,
.rdw-link-wrapper {
    margin-bottom: 0;
}

.rdw-inline-wrapper:not(:last-child)::after,
.rdw-block-wrapper:not(:last-child)::after,
.rdw-list-wrapper:not(:last-child)::after,
.rdw-link-wrapper:not(:last-child)::after {
    content: '';
    display: block;
    width: 1px;
    height: 16px;
    background: var(--neutral-200);
    margin-right: 8px;
    margin-left: 8px;
}

.rdw-option-wrapper {
    border: 0;
    padding: 4px;
    margin: 0 4px 0 0;
    height: auto;
}

.rdw-option-wrapper:hover {
    box-shadow: none;
    background: var(--neutral-150);
}

.rdw-option-active {
    box-shadow: none;
    background: var(--neutral-200);
}

.rdw-block-dropdown {
    width: auto;
    border: 0;
    margin: 0;
}

.rdw-dropdown-wrapper:hover,
.rdw-dropdown-wrapper:active {
    box-shadow: none;
    background: none;
}

.rdw-dropdown-selectedtext {
    padding: 0 24px 0 0;
    color: inherit;
}

.rdw-dropdown-carettoopen {
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}

.rdw-dropdown-optionwrapper {
    padding: 8px;
    font-size: 12px;
    left: -8px;
    width: auto;
    overflow: auto;
}

.rdw-link-modal {
    display: block;
    height: auto;
}

.rdw-link-modal-input {
    display: block;
}

.rdw-link-modal-buttonsection {
    margin: 0;
    margin-top: 16px;
}

.rdw-link-modal-btn {
    margin-left: 0;
    margin-right: 16px;
}

[for="openLinkInNewWindow"] {
    display: none;
}

.public-DraftEditor-content {
    max-height: 100%;
    overflow: auto;
    padding: 4px 16px;
}

.rdw-editor-wrapper .rdw-image-center {
    display: inline-block;
}

.rdw-editor-wrapper figure {
    margin:0;
}

img.rdw-image-modal-upload-option-input {
    padding: 3px; /* avoids "hiding" the cursor */
}

.activity-item-unread::before {
    content: '';
    display: block;
    position: absolute;
    height: 6px;
    width: 6px;
    border: 2px solid white;
    background: var(--red-700);
    border-radius: 50%;
    top: 30px;
    left: 8px;
}

.activity-item {
    color: var(--neutral-750);
    display: block;
    cursor: pointer;
    padding: 16px;
    padding-left: 24px;
    position: relative;
    font-size: 14px;
}

.activity-placeholder {
    padding: 24px;
    text-align: center;
    font-size: 14px;
    font-style: italic;
}

.activity-item:hover {
    background: var(--neutral-000);
}

.activity-content-wrap {
    width: calc(100% - 48px);
    display: inline-block;
}


.activity-content {
    color: var(--neutral-600);
    font-weight: 14px;
}

.activity-avatar, .activity-avatar-multiple {
    height: 32px;
    width: 32px;
    margin-right: 12px;
}

.activity-avatar {
    border: 2px solid var(--neutral-000);
    border-radius: 50%;
    vertical-align: top;
}

.activity-avatar-multiple {
    display: inline-block;
    position: relative;
}

.activity-avatar-multiple .activity-avatar {
    position: absolute;
    top: 0;
    left: 0;
    width: 28px;
    height: 28px;
}

.activity-avatar:nth-child(2) {
    top: 8px;
    left: 8px;
}

.activity-actor-date {
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}

.activity-time {
    flex-shrink: 0;
}

.activity-load-more {
    text-align: center;
    padding-top: 12px;
    margin: 12px 24px;
    text-transform: uppercase;
    font-size: 11px;
    border-top: 1px solid var(--neutral-000);
    display: block;
    color: inherit;
}

.activity-preheader {
    display: flex;
    border-bottom: 1px solid var(--neutral-000);
    justify-content: space-between;
    align-items: center;
    padding-bottom: 8px;
}

.activity-unread-count {
    font-weight: bold;
}

.activity-mark-all-seen {
    text-transform: uppercase;
    font-size: 10px;
    color: var(--neutral-400);
    padding: 6px 8px;
    border-radius: 2px;
}

.activity-mark-all-seen:hover {
    color: var(--neutral-750);
    background: var(--neutral-100);
}

.bell-glyph-dot {
    fill: var(--active-700);
}

.table {
    width: 100%;
    border: 1px solid var(--neutral-150);
    border-radius: 4px;
    border-collapse: separate;
    text-align: left;
    font-size: 14px;
    /* https://stackoverflow.com/a/73399942 */
    height: fit-content;
}


.table-header-row {
    /* required for 100% height on .table-header-content */
    height: 100%;
}

.table-header {
    border-bottom: 1px solid var(--neutral-150);
    font-weight: normal;
    padding: 8px 16px;
}

.table-header-content {
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    justify-content: space-between;
}

.table-header-title {
    line-height: 16px;
    font-weight: bold;
    display: flex;
}

.table-header-sortable {
    color: var(--blue-800);
    cursor: pointer;
}

.table-header-input-wrap {
    margin: 8px 0 4px;
}

.table-header-sorted .table-header-content::after {
    content: '';
    display: block;
    height: 1px;
    width: 100%;
    background: var(--active-700);
    bottom: -9px;
    position: absolute;
}

.table-sort-icon {
    flex-shrink: 0;
    vertical-align: top;
    margin: 0 4px;
    visibility: hidden;
    fill: var(--neutral-600);
    transform: rotate(180deg);
}

.table-header-sorted .table-sort-icon {
    visibility: visible;
    position: relative;
}

.table-header-reverse .table-sort-icon {
    transform: rotate(0);
}

.table-cell {
    padding: 8px 16px;
}

.table-data-row:nth-of-type(2n + 1) td {
    background: var(--neutral-000);
}

.table-data-row:last-child td:first-child {
    border-bottom-left-radius: 4px;
}

.table-data-row:last-child td:last-child {
    border-bottom-right-radius: 4px;
}

.table-cell-empty {
    text-align: center;
    color: var(--neutral-400);
    padding: 72px 12px 24px;
}

.table a:visited {
    color: var(--purple-800);
}

.exportable-table {
    position: relative;
}

.table-export-wrap {
    position: absolute;
    right: 0;
    top: -40px;
    display: flex;
    align-items: center;
}

.table-export-text {
    color: var(--blue-800);
    margin-right: 4px;
    cursor: pointer;
}

.table-export-wrap svg {
    fill: var(--neutral-200);
}

.app-sidebar {
    background: var(--neutral-800);
}

.app-sidebar * {
    box-sizing: border-box;
}

.sidebar-content {
    position: sticky;
    top: 0;
}

.sidebar-logo-wrap {
    padding: 0 24px;
    height: 62px;
    line-height: 60px;
}

.sidebar-logo {
    opacity: .72;
}

.sidebar-menu-link {
    display: block;
    display: flex;
    color: var(--neutral-200);
    font-size: 14px;
    padding: 0 16px;
    width: 100%;
}

.sidebar-menu-link:hover,
.sidebar-menu-link:focus,
.sidebar-menu-link-active {
    outline: none;
    background: var(--neutral-750);
}

.sidebar-menu-link-active {
    color: var(--neutral-white);
}

.sidebar-text-link {
    width: 100%;
    height: 48px;
    line-height: 48px;
}

.sidebar-text-link-icon {
    fill: var(--neutral-500);
    flex-shrink: 0;
    margin: auto 0;
}

.sidebar-menu-link-active .sidebar-text-link-icon {
    fill: var(--neutral-200);
}

.sidebar-text-link-label {
    margin: auto auto auto 8px;
}

.sidebar-profile-content {
    width: 100%;
    display: flex;
    border-top: 2px solid var(--neutral-750);
    border-left: none;
    border-right: none;
    height: 80px;
}

.sidebar-menu-link-active .sidebar-profile-content {
    border-color: transparent;
}

.sidebar-profile-wrap + .sidebar-menu-link .sidebar-text-link {
    height: 50px;
    border-top: 2px solid transparent;
}

.sidebar-profile-wrap:not(.sidebar-menu-link-active):not(:focus):not(:hover) + .sidebar-menu-link:not(:hover):not(:focus):not(.sidebar-menu-link-active) .sidebar-text-link {
    border-color:var(--neutral-750);
}


.sidebar-profile-avatar {
    flex-shrink: 0;
    height: 24px;
    width: 24px;
    margin: auto 16px auto 0;
    border-radius: 50%;
}

.sidebar-profile-info {
    margin: auto 0;
}

.sidebar-workspace-name {
    font-size: 12px;
}

.sidebar-extension-nag {
    display: flex;
    align-items: center;
    color: var(--neutral-200);
    gap: 8px;
    border: 1px solid var(--neutral-400);
    align-items: center;
    border-radius: 8px;
    padding: 8px;
    font-size: 12px;
    margin: 8px 12px;
}

.header-wrapper {
    position: relative;
    z-index: 99;
    background-color: var(--neutral-white);
    width: 100%;
    height: 64px;
    box-shadow: 0 4px 0 0 var(--alpha-200);
}

.header {
    color: var(--neutral-750);
    display: flex;
    justify-content: space-between;
    height: 100%;
}

.header-wrapper .container {
    height: 100%;
}

.header-logo {
    margin: auto 0;
    line-height: 0;
}

.header-workspace {
    margin: auto auto auto 8px;
    border-left: 1px solid var(--neutral-200);
    padding: 0 16px;
    color: var(--neutral-600);
}

.header-workspace-name,
.header-workspace .Select-value {
    font-size: 18px;
}

.header-workspace .Select-menu {
    top: 40px;
    left: 0px;
    right: unset;
    min-width: 236px;
}

.header-workspace.Select .icon {
    margin-left: 4px;
}

.menu {
    display: flex;
    align-items: stretch;
    align-content: center;
    justify-content: flex-end;
    height: 100%;
}

.menu-link {
    color: var(--neutral-750);
    text-decoration: none;
    font-size: 14px;
    font-weight: normal;
    border-bottom: 4px solid transparent;
    margin: 0 40px -4px 0;
    position: relative;
    display: flex;
    flex-shrink: 0;
}

.menu-link-icon {
    margin-right: 24px;
}

.inner-menu {
    margin: auto;
}

.menu-should-visit :before {
    content: '';
    display: block;
    position: absolute;
    width: 6px;
    height: 6px;
    margin-right: -6px;
    margin-bottom: -6px;
    right: 5px;
    top: 18px;
    border-radius: 5px;
    background: var(--red-700);
}

.user-menu {
    display: flex;
    padding-bottom: 3px;
    margin-left: 24px;
    color: var(--neutral-400);
}

.user-menu-image {
    height: 36px;
    width: 36px;
    margin: auto 0;
    border-radius: 50%;
}

.user-menu .Select {
    margin: auto 0;
}

.user-menu .Select-control {
    height: 36px;
}

.menu-link.active {
    border-bottom: 4px solid var(--neutral-200);
}

.menu-link-icon.active .icon {
    fill: var(--neutral-600);
}

.salary-input-header {
    color: var(--neutral-600);
    font-size: 14px;
}

.salary-input-wrap {
    display: flex;
    justify-content: center;
    margin: 8px 0 16px;
    flex-wrap: wrap;
}

.salary-track-wrap {
    display: flex;
    width: calc(100% - 14px);
    height: 16px;
}

.salary-input-track {
    /* note: background gradient controlled in JS */
    width: 100%;
    height: 2px;
    align-self: center;
}

.salary-thumb {
    height: 14px;
    width: 14px;
    background: var(--background-primary);
    border: 2px solid var(--primary);
    border-radius: 99px;
}

.salary-thumb:first-child {
    box-shadow: -2px 0 0 var(--background-primary);
}

.salary-thumb:last-child {
    box-shadow: 2px 0 0 var(--background-primary);
}

.salary-min-label,
.salary-max-label {
    margin-bottom: 2px;
    font-size: 10px;
}

.salary-min-label {
    margin-right: auto;
}

.salary-number-inputs-wrap {
    display: flex;
    gap: 4px;
    align-items: center;
    color: var(--text);
    margin: 12px 0 8px;
}

.salary-number-static {
    padding: 4px 6px;
    border-radius: var(--border-small);
    background: var(--primary-light);
    cursor: pointer;
}

.salary-number-static:hover {
    color: var(--primary);
}

.salary-number-meta {
    color: var(--text-light);
}

.text-input.salary-number-input {
    height: 24px;
    width: 88px;
    padding: 4px;
    border-radius: var(--border-small);
}

.salary-currency-typeahead .generic-tray-content {
    min-width: 200px;
}

.salary-input-dropdowns {
    display: flex;
    gap: 8px;
}

.salary-input-reset {
    fill: var(--text-light);
    cursor: pointer;
    margin-left: 4px;
}

.salary-input-reset:hover {
    fill: var(--primary);
}

.sequence-preview-tile {
    border: 1px solid var(--neutral-150);
    padding: 24px;
    border-radius: 8px;
    margin-top: 16px;
}

.sequence-preview-tile-header {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 20px;
}

.sequence-preview-tile-details {
    margin: 12px 0;
    color: var(--neutral-600);
}

.sequence-preview-tile-detail {
    margin-bottom: 8px;
}

.sequence-preview-tile-detail-header {
    font-weight: bold;
    width: 120px;
    display: inline-block;
}

.sequence-preview-tile-meta {
    font-size: 12px;
    color: var(--neutral-600);
}

.sequence-tile-view-messages {
    border-radius: 8px;
    border: 1px solid var(--neutral-200);
    margin-top: 24px;
}

.sequence-tile-view-message-header {
    padding: 8px 8px 8px 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
}

.sequence-tile-view-message-header :first-child {
    flex-grow: 1;
}

.sequence-tile-view-message:not(:last-child) .sequence-tile-view-message-header,
.sequence-tile-view-message:last-child .sequence-tile-view-message-header-active,
.sequence-tile-view-message:not(:last-child) .sequence-tile-view-message-body {
    border-bottom: 1px solid var(--neutral-150);
}

.sequence-tile-view-message-body {
    padding: 16px 44px;
}

.sequence-tile-view-message-header small {
    font-size: 14px;
    color: var(--neutral-600);
    margin-left: 12px;
}

.sequence-tile-view-message-header a {
    padding-right: 12px;
}

.sequence-tile-view-message-header svg {
    margin-right: 4px;
    fill: var(--active-700);
}

.sequence-tile-view-message-header-active svg {
    transform: rotate(180deg);
}

.sequence-tile-view-message-subject b {
    margin-left: 4px;
}

.expanding-search-input {
    display: inline-flex;
    border: 1px solid transparent;
    padding: 1px;
    height: 32px;
    line-height: 32px;
    border-radius: 32px;
    font-size: 14px;
    box-sizing: border-box;
    vertical-align: middle;
    width: 200px;
    border-color: var(--neutral-150);
}

.expanding-search-input * {
    box-sizing: inherit;
}

.expanding-search-input-has-content {
    padding: 0;
    border-width: 2px;
    border-color: var(--neutral-400);
}

.expanding-search-input:focus-within {
    padding: 0;
    border-color: var(--active-700);
    border-width: 2px;
}

.expanding-search-input-icon {
    flex-shrink: 0;
    fill: currentColor;
    margin-right: 4px;
    margin: 0 2px;
}

.expanding-search-input-field {
    background: none;
    border: none;
    outline: none;
    flex-grow: 1;
    min-width: 0;
}

.expanding-search-input-clear {
    margin: auto 8px auto 0;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 12px;
    width: 12px;
    border-radius: 16px;
    background: var(--neutral-400);
    flex-shrink: 0;
    fill: white;
    border: 0;
    padding: 0;
}

.expanding-search-input-clear:hover {
    background: var(--active-700);
}

.expanding-search-input-placeholder {
    line-height: 100%;
    font-weight: bold;
    border: 0;
    padding: 0;
    background: none;
}

.expanding-search-input-clear svg {
    display: block;
}

.titled-search-wrapper {
    display: flex;
    justify-content: space-between;
    margin-bottom: 24px;
    gap: 12px;
    flex-wrap: wrap
}

.titled-search-wrapper-title {
    font-weight: bold;
    font-size: 20px;
    line-height: 24px;
}

.timeline {
    display: flex;
    flex: 0 0 auto;
    overflow: hidden;
    margin-bottom: 16px;
}

.timeline-box {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 0 10px;
    border-radius: 5px;
    border: 1px solid var(--neutral-200);
    margin: 0 3px;
    height: 60px;
    box-sizing: border-box;
}

.timeline-box:first-child,
.timeline-box-current {
    margin-left: 0;
}

.timeline-title {
    white-space: nowrap;
    margin-top: 6px;
    font-weight: bold;
}

.timeline-years {
    font-size: 12px;
    display: flex;
    margin-bottom: 6px;
    white-space: nowrap;
}

.timeline-years .icon {
    margin: auto 4px auto 0;
}

.timeline-bar {
    height: 5px;
    border-radius: 2.5px;
    background-color: var(--active-200);
}

.timeline-estimate .timeline-bar {
    background: linear-gradient(to right, var(--active-200), var(--neutral-white))
}

.timeline-internship .timeline-bar {
    background-color: var(--neutral-200);
}

.timeline-unknown {
    color: var(--neutral-200);
}

.timeline-unknown .timeline-bar {
    visibility: hidden;
}

.timeline-unknown .timeline-years {
    font-style: italic;
}

.timeline-wrapper {
    position: relative;
}
/*  .timeline-continuation will be displayed contextually based on
content width calculated in timeline.jsx -- all other styles here. */
.timeline-continuation {
    position: absolute;
    top: 0;
    right: 0;
    width: 20px;
    height: 100%;
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, var(--neutral-white) 100%);
    border: 1px solid var(--neutral-200);
    border-left-width: 0;
    box-sizing: border-box;
}

.meta-page {
    background: var(--neutral-white);
    font-size: 14px;
    box-sizing: border-box;
}

.meta-page *, .meta-page *:before, .meta-page *:after {
    box-sizing: inherit;
}

.meta-page-wrap {
    display: flex;
}

.meta-page-nav {
    padding: 32px 16px 32px 0;
    flex-basis: 25%;
    flex-shrink: 0;
}

.meta-page-main {
    padding: 32px 32px 45px 16px;
    flex-grow: 1;
}

.meta-page-nav-item {
    color: inherit;
    display: block;
    border-left: 2px solid transparent;
    padding: 8px 0 8px 28px;
    white-space: nowrap;
}

.meta-page-nav-active {
    border-color: var(--blue-700);
    font-weight: bold;
}

.meta-page-head {
    font-weight: bold;
    font-size: 20px;
    margin-bottom: 32px;
}

.meta-page-subhead {
    font-size: 20px;
    font-weight: bold;
    margin: 32px 0 24px;
}

.meta-page-subhead:first-child {
    margin-top: 16px;
}

.meta-page-block li {
    margin: 8px 0;
}

.meta-page-border-box {
    border: 1px solid var(--neutral-150);
    box-sizing: border-box;
    border-radius: 4px;
    padding: 0 20px;
    margin: 32px 0;
}

.meta-page-input {
    border: 1px solid var(--neutral-200);
    box-sizing: border-box;
    border-radius: 4px;
    padding: 0px 12px;
    width: 449px;
    height: 32px;
    vertical-align: middle;
    margin: 8px 0;
    display: block;
}

.meta-page-input + .copy {
    content: 'Copy';
    color: var(--blue-800);
    display: block;
    margin: -34px 0 28px 0;
    pointer-events: none;
    text-align: right;
    width: 439px;
}

.meta-page-list {
    padding-left: 16px;
}

.meta-page-list li {
    padding-left: 16px;
}

.card-ats-data-header {
    margin-bottom: 24px;
}

.card-ats-entry:not(:last-child) {
    margin-bottom: 24px;
}

.card-ats-entry-icon {
    display: inline-block;
    margin-right: 24px;
}

.card-ats-entry-details {
    display: inline-block;
}

.card-ats-entry-top,
.card-ats-entry-icon {
    vertical-align: top;
}

.card-ats-entry-top {
    margin-bottom: 16px;
}

.card-ats-entry-name {
    font-size: 16px;
    line-height: 1;
    font-weight: bold;
}

.card-ats-entry-contact {
    color: var(--neutral-600);
    font-size: 12px;
}

.card-ats-entry-jobs {
    border: 1px solid var(--neutral-200);
    border-radius: 4px;
    margin-left: 56px;
}

.card-ats-job {
    padding: 16px;
}

.card-ats-job:not(:last-child) {
    border-bottom: 1px solid var(--neutral-200);
}

.card-ats-job-title {
    font-weight: bold;
    margin-bottom: 8px;
    display: block;
}

.card-ats-job-detail-item {
    display: inline-block;
    margin-right: 40px;
}

.card-ats-job-detail-item-label {
    color: var(--neutral-400);
    margin-right: 4px;
}

.card-ats-entry-more-jobs {
    width: 100%;
    text-align: left;
    background: var(--neutral-150);
    color: var(--blue-800);
    padding: 12px 16px;
    border: none;
    border-radius: 0 0 4px 4px;
}

.card-ats-entry-resumes {
    float: right;
}

.card-ats-entry-resumes .Select-menu {
    top: 32px;
}

.card-ats-entry-resume-icon {
    vertical-align: top;
}

.card-ats-entry-resume-label {
    color: var(--blue-800);
}

.card-ats-entry-resume-count {
    margin-left: 4px;
    font-size: 12px;
    color: var(--neutral-400);
}

.toast-wrap {
    position: fixed;
    width: 100%;
    bottom: 32px;
    z-index: 99;
    text-align: center;
    pointer-events: none;
}

/* animation durations set in toast.jsx */

.toast {
    background: var(--neutral-750);
    color: var(--neutral-200);
    display: inline-flex;
    align-items: center;
    height: 48px;
    border-radius: 4px;
    animation-name: toast-in;
    animation-timing-function: cubic-bezier(0, 0, .2, 1);
    animation-fill-mode: forwards;
    transform-origin: top center;
    will-change: transform, opacity;
    overflow: hidden;
}

.toast-has-action {
    pointer-events: all;
}

.toast-hiding {
    animation-timing-function: cubic-bezier(0.4, 0, 1, 1);
    animation-name: toast-out;
}

.toast-icon {
    animation-delay: .075s;
    margin-right: 2px;
}

.toast-message {
    line-height: 48px;
    animation-delay: .1s;
    padding-right: 24px;
}

.toast-action {
    line-height: 48px;
    padding: 0 16px;
    text-transform: uppercase;
    font-size: 14px;
    color: var(--active-700);
}

.toast-action:hover {
    background-color: var(--neutral-600);
    color: var(--neutral-white);
    cursor: pointer;
}

@keyframes toast-in {
    0% {
        transform: translateY(120%) scale(0.8);
        opacity: 0;
    }
    100% {
        transform: translateY(0) scale(1);
    }
}

@keyframes toast-out {
    0% {
        transform: translateY(0) scale(1);
        opacity: 1;
    }

    100% {
        transform: translateY(30%) scale(0.8);
        opacity: 0;
    }
}

.fancy-checkbox-input {
    opacity: 0;
    position: absolute;
    width: 0;
    height: 0;
    pointer-events: none;
}

.fancy-checkbox {
    display: flex;
    cursor: pointer;
    user-select: none;
    font-size: 14px;
    color: var(--neutral-800);
}

.fancy-checkbox-flipped {
    flex-direction: row-reverse;
    justify-content: flex-end;
}

.fancy-checkbox-disabled {
    pointer-events: none;
}

.fancy-checkbox-track {
    margin-top: 2px;
    display: inline-block;
    background: var(--neutral-400);
    height: 16px;
    width: 24px;
    border-radius: 16px;
    position: relative;
    box-shadow: inset 0 0 3px var(--alpha-200);
    flex-shrink: 0;
}

.fancy-checkbox-checked .fancy-checkbox-track {
    background: var(--active-600);
}

.fancy-checkbox-disabled .fancy-checkbox-track {
    background: var(--neutral-150);
}

.fancy-checkbox-thumb {
    position: absolute;
    display: inline-block;
    height: 12px;
    width: 12px;
    top: 2px;
    left: 2px;
    border-radius: 50%;
    background: white;
    transition: transform 0.15s cubic-bezier(0.4, 0, 0, 1);
}

.fancy-checkbox-disabled .fancy-checkbox-thumb {
    box-shadow: 0 0 0 2px var(--neutral-400);
}

.fancy-checkbox:hover .fancy-checkbox-thumb {
    will-change: transform;
}

.fancy-checkbox-checked .fancy-checkbox-thumb {
    transform: translateX(calc(100% - 4px));
}

.fancy-checkbox-text {
    margin: auto 8px;
}

.fancy-checkbox-text a {
    text-decoration: underline;
    color: inherit;
}

.boolean-expression-predicates {
    border-radius: 4px;
    border: 1px solid var(--neutral-150);
    margin: 16px 0;
}

.boolean-predicate {
    display: flex;
    height: 44px;
    align-items: center;
    position: relative;
}

.boolean-predicate-placeholder {
    color: var(--neutral-400);
}

.boolean-predicate:not(:last-child) {
    border-bottom: 1px solid var(--neutral-150);
}

.boolean-predicate + .boolean-predicate::before {
    content: 'And';
    text-transform: uppercase;
    position: absolute;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    color: var(--neutral-200);
    font-size: 12px;
    top: 0;
    background: var(--neutral-white);
    padding: 0 4px;
}

.boolean-predicate-operator {
    margin: 0 16px;
    width: 72px;
}

.boolean-predicate-value-wrap {
    flex-grow: 1;
    position: relative;
}

.boolean-predicate-values {
    display: block;
    width: 100%;
    text-align: left;
}

.boolean-predicate-value-wrap .typeahead {
    right: 20px;
    left: -20px;
    top: calc(100% + 8px);
}

.boolean-predicate-remove {
    cursor: pointer;
    fill: var(--neutral-300);
}

.boolean-expression-add-predicate {
    border: 0;
    background: none;
    padding: 0;
    color: var(--neutral-600);
    display: inline-flex;
    align-items: center;
    outline: none;
}

.boolean-expression-add-predicate svg {
    fill: var(--neutral-200);
    margin-right: 8px;
}

.tooltip-popper {
    z-index: 2;
    max-width: 240px;
    white-space: normal;
}

.tooltip {
    font-size: 12px;
    transform-origin: bottom left;
    text-align: left;
    animation: scale-up 0.125s cubic-bezier(0, 0, 0.2, 1);
    padding: 4px 8px;
    line-height: 1.5;
    border-radius: 2px;
    background: var(--neutral-900);
    color: white;
    font-weight: normal;
    pointer-events: none;
}

.tooltip-arrow::before {
    content: '';
    height: 6px;
    width: 6px;
    transform: rotate(45deg);
    background: var(--neutral-900);
    position: absolute;
}

[data-popper-placement*='top'] .tooltip-arrow::before {
    top: 1px
}

[data-popper-placement*='bottom'] .tooltip-arrow::before {
    bottom: 19px
}


.tooltip-orange + .tooltip-popper .tooltip {
    background:var(--neutral-white);
    border: 2px solid var(--active-700);
    color: var(--neutral-900);
}

.tooltip h4 {
    font-weight: bold;
    margin-bottom: 8px;
}


@keyframes scale-up {
    0% {
        opacity: 0;
        transform: scale(0.85);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

[data-popper-placement='bottom-start'] .tooltip {
    transform-origin: top left;
}

[data-popper-placement='top-end'] .tooltip {
    transform-origin: bottom right;
}

[data-popper-placement='bottom-end'] .tooltip {
    transform-origin: top right;
}


.user-pill-input {
    margin-right: 2px;
    margin-bottom: 2px;
}

.user-pill-input {
    line-height: 36px;
    height: 36px;
}

.user-pill-input {
    flex-grow: 1;
    margin-left: 4px;
}

.user-suggestion {
    height: 54px;
    display: flex;
    align-items: center;
}

.user-suggestion-avatar {
    height: 32px;
    width: 32px;
    border-radius: 50%;
    margin-right: 12px;
    flex-shrink: 0;
    fill: var(--neutral-200);
    border: 1px dashed var(--neutral-200);
}

.user-suggestion-details-wrap {
    display: flex;
    flex-grow: 1;
    overflow: hidden;
}

.user-suggestion-details {
    flex-grow: 1;
    white-space: nowrap;
    overflow: hidden;
    line-height: 16px;
    margin: auto 0;
}


.user-suggestion-details > * {
    text-overflow: ellipsis;
    overflow: hidden;
}

.user-suggestion-name {
    font-weight: bold;
    line-height: 16px;
}

.user-suggestion-subtext {
    flex-shrink: 0;
    margin: auto 0 auto 8px;
    font-size: 12px;
    font-style: italic;
}

.user-suggestion-email {
    font-size: 12px;
}

.user-suggestion-disabled .user-suggestion-name,
.user-suggestion-disabled .user-suggestion-email {
    color: var(--neutral-400);
}

.user-suggestion-disabled .user-suggestion-subtext {
    color: var(--neutral-900);
}

.user-suggestion-disabled .user-suggestion-avatar {
    opacity: 0.5;
}

.checkbox, .checkbox * {
    box-sizing: border-box;
}

.checkbox {
    margin-right: 24px;
}

.checkbox-input {
    opacity: 0;
    position: absolute;
    width: 0;
    height: 0;
    pointer-events: none;
}

.checkbox-label {
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    font-size: 14px;
    line-height: 16px;
}

.checkbox-square {
    display: inline-block;
    height: 16px;
    width: 16px;
    border: 2px solid var(--neutral-400);
    border-radius: 2px;
    margin-right: 12px;
    position: relative;
    flex-shrink: 0;
}

.checkbox-square .icon {
    opacity: 0;
    position: absolute;
    left: 0;
    top: 0;
    transform: scale(1.5);
    width: 24px;
}

.checkbox:focus-within .checkbox-square::before,
.checkbox-label:hover .checkbox-square::before{
    content: '';
    display: inline-block;
    height: 32px;
    width: 32px;
    background: var(--alpha-200);
    border-radius: 50%;
    position: absolute;
    left: -10px;
    top: -10px;
    z-index: 0;
}

.checkbox-input:checked + .checkbox-label > .checkbox-square {
    background-color: var(--active-600);
    border-color: var(--active-600);
}

.checkbox-input:checked + .checkbox-label > .checkbox-square .icon {
    opacity: 1;
}

.checkbox-input:disabled + .checkbox-label {
    opacity: 0.5;
}

.privacy-toggle .tooltip {
    padding: 16px;
    max-width: 448px;
    font-size: 14px;
}

.privacy-toggle .tooltip-arrow {
    border-bottom-color: var(--active-100);
}

.privacy-toggle-item {
    background: var(--neutral-050);
    display: table-row;
}

.privacy-toggle-item-icon {
    vertical-align: bottom;
    margin-left: 4px;
}

.privacy-toggle-item > * {
    display: table-cell;
    padding: 12px 16px;
    border-bottom: 2px solid var(--neutral-white);
}

.privacy-toggle-item-param {
    white-space: nowrap;
    font-size: 12px;
    color: var(--neutral-400);
}

.privacy-toggle-item-value {
    width: 100%;
}


.privacy-toggle-item-empty .privacy-toggle-item-value {
    color: var(--neutral-400);
}

.privacy-toggle-warning {
    padding: 12px;
    border: 1px solid var(--active-700);
    border-radius: 4px;
    display: flex;
    margin-top: 24px;
    margin-bottom: 12px;
}

.privacy-toggle-warning-icon {
    flex-shrink: 0;
    margin: auto 0;
}

.privacy-toggle-warning-text {
    margin: auto 0;
    padding-left: 16px;
}

.privacy-toggle-shared {
    font-size: 14px;
    line-height: 32px;
    height: 32px;
    display: inline-block;
}

.privacy-toggle-shared {
    display: inline-flex;
    align-items: center;
}

.privacy-toggle-checkmark {
    margin-right: 8px;
}

.global-notifications {
    position: fixed;
    width: 100%;
    background-color: var(--active-100);
    z-index: 999;
    box-shadow: 0 23px 0 0 var(--alpha-200);
    text-align: center;
    box-sizing: border-box;
    font-size: 14px;
    height: 36px;
    line-height: 36px;
}

.global-error {
    background-color: var(--red-200);
}

.global-notice {
    background-color: var(--active-100);
}

.global-success {
    background-color: var(--green-500);
    color: var(--neutral-white);
}

.global-notification {
    position: relative;
    padding: 10px;
}

.notification-actions {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    display: flex;
}

.notification-action {
    padding: 10px 20px;
    text-transform: uppercase;
    font-size: 12px;
    color: var(--neutral-black);
    font-weight: bold;
    margin: auto 0;
}

.global-success .notification-action {
    color: var(--neutral-white);
}

.ReactModal__Body--open .global-notifications {
    top: 0;
    transform: none!important;
}

.notification-learn-more {
    margin-left: 16px;
    border: 1px solid var(--neutral-white);
    font-weight: bold;
    line-height: 30px;
    border-radius: 32px;
    padding: 0 16px;
}

.covid-help-img {
    display: block;
    width: 100%;
    margin: 24px 0;
}

.debug-menu {
    font-size: 22px;
    color: #ccc;
    font-weight: bold;
    margin-left: -10px;
    display: inline-block;
    padding-bottom: 2px;
}

.debug-panel {
    font-size: 10px;
    position: fixed;
    bottom: 0;
    right: 0;
    left: 0;
    width: 100%;
    height: 34%;
    min-height: 200px;
    z-index: 40;
    background-color: #fff;
    padding: 20px;
    box-sizing: border-box;
    box-shadow: 0 -4px 0 0 rgba(0, 0, 0, 0.08);
}

.debug-close {
    position: absolute;
    top: 5px;
    right: 5px;
    display: block;
    width: 20px;
    height: 20px;
    border-radius: 50%;
}

.debug-panel h2 {
    font-size: 20px;
    font-weight: bold;
    margin: 10px 0;
}

.debug-panel th {
    font-size: 16px;
    text-align: right;
    padding: 5px;
}

.debug-panel input {
    font-size: 14px;
}

.debug-panel-inner {
    overflow: auto;
    height: 100%;
    width:100%;
    box-sizing: border-box;
}

.debug-panel .curl-item {
    background-color: #f7f7f7;
    box-shadow: 0 2px rgba(0, 0, 0, 0.075), 0 2px 4px rgba(0, 0, 0, 0.03);
    border-radius: 5px;
    padding: 10px;
    margin: 10px 0;
}

.debug-panel pre {
    border-top: 2px solid #eee;
    font-family: Hack, Monaco, monospace;
    overflow: hidden;
    padding-top: 0.5em;
    margin: 0.5em 0 0;
}

.search-input {
    background: var(--neutral-white);
    border: 2px solid var(--neutral-white);
    position: relative;
    height: 40px;
    line-height: 40px;
    border-radius: 40px;
    font-size: 14px;
    box-sizing: border-box
}

.search-input * {
    box-sizing: inherit;
}

.search-input:focus-within {
    border-color: var(--active-700);
}

.search-input-icon {
    position: absolute;
    left: 2px;
    top: 2px;
    pointer-events: none;
}

.search-input-field {
    width: calc(100% - 56px);
    background: none;
    border: none;
    height: 34px;
    line-height: 34px;
    vertical-align: top;
    padding-left: 36px;
    padding-right: 36px;
    outline: none;
}

.search-input-clearable .search-input-field {
    width: calc(100% - 72px);
}

.search-input-clear {
    height: 16px;
    width: 16px;
    border-radius: 16px;
    position: absolute;
    background: var(--neutral-400);
    border: 0;
    padding: 0;
    top: 10px;
    right: 10px;
}

.search-input-clear .icon {
    display: block;
}

.search-input-dark:not(:focus-within) {
    background: var(--neutral-050);
    border-color: var(--neutral-050);
}


.google-button {
    width: 198px;
    height: 40px;
    position: relative;
    display: inline-block;
    border: 0;
    padding: 0;
}

.google-button img {
    position: absolute;
    top: 0;
    left: 0;
    visibility: hidden;
    pointer-events: none;
}

.google-button img.g_normal {
    visibility: visible;
}

.google-button:focus img.g_focus {
    visibility: visible;
}

.google-button:hover img.g_hover {
    visibility: visible;
}

.google-button:active img.g_pressed {
    visibility: visible;
    filter: drop-shadow(0px 0px 1px rgba(0, 0, 0, 0.084)) drop-shadow(0px 2px 2px rgba(0, 0, 0, 0.3));
}

.google-button[disabled] {
    pointer-events: none;
}

.google-button[disabled] img {
    visibility: hidden !important;
}

.google-button[disabled] img.g_disabled {
    visibility: visible !important;
    filter: none;
}

.email-auth-button-wrap {
    display: flex;
    margin: 24px 0 32px;
    align-items: center;
    gap: 24px;
}

.microsoft-button {
    background: var(--neutral-white);
    border: 0;
    padding: 0;
}

.adhoc-talent-upload-error-icon {
    fill: var(--red-700);
    border: 1px solid var(--red-700);
    border-radius: 50%;
}

.adhoc-talent-upload-actions {
    margin-top: 32px;
}

.adhoc-talent-upload-table-wrap {
    max-height: 600px;
    overflow: auto;
}

.adhoc-talent-upload-invalid-entry {
    display: inline-flex;
    color: var(--red-700);
    align-items: center;
}

.adhoc-talent-upload-invalid-entry .adhoc-talent-upload-error-icon {
    margin-right: 8px;
}

.adhoc-talent-upload-invalid-entry .adhoc-talent-upload-error-icon,
.adhoc-talent-upload-invalid-entry .tooltip-target {
    display: block;
}

.adhoc-talent-upload-success {
    border: 1px solid var(--neutral-150);
    border-radius: 2px;
    padding: 16px;
    display: flex;
    align-items: center;
    margin-bottom: 32px;
}

.adhoc-talent-upload-success svg {
    fill: var(--neutral-white);
    margin-right: 8px;
    border-radius: 50%;
    background: var(--green-500);
}

.adhoc-talent-upload-error {
    color: var(--red-700);
    margin: 16px 0;
}

.fancy-loader-message {
    display: inline-block;
    padding: 32px 64px;
    background: rgba(25, 25, 25, .75);
    color: white;
    text-align: center;
    margin: auto;
    z-index: 1;
    border-radius: 3px;
    font-size: 18px;
}

.cube-emitter {
    position: absolute;
    overflow: hidden;
    border-radius: 5px;
    background: white;
}

.cube-wrap {
    perspective: 1500px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
}

.cube {
    left: 0;
    top: 0;
    transform-style: preserve-3d;
    width: 100%;
    height: 100%;
    animation-name: zoom;
    animation-direction: reverse;
    animation-timing-function: cubic-bezier(0, 0, .2, 1);
    animation-iteration-count: infinite;
}

@keyframes zoom {
    100% {
        transform: translate(0) scale(0.1);
    }
}

.cube-face {
    background: rgba(255, 255, 255, .6);
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
}

.request-intro-header {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 24px;
}

.request-intro-target {
    display: flex;
    align-content: center;
    margin-bottom: 8px;
}

.request-intro-target + .button-row {
    margin-top: 24px;
}

.request-intro-target-avatar {
    flex-shrink: 0;
    height: 32px;
    width: 32px;
    border-radius: 50%;
    margin-right: 12px;
}

.request-intro-target-info {
    flex-grow: 1;
    margin-bottom: 12px;
}

.request-intro-target-subhead {
    margin-top: 2px;
    font-size: 12px;
}

.request-intro-target-subhead a {
    font-size: 12px;
    color: inherit;
}

.request-intro-target-subhead a:hover {
    text-decoration: underline;
}

.request-intro-target-icon {
    flex-shrink: 0;
}

.request-intro-subject {
    margin-bottom: 16px;
}

.request-intro-message {
    min-height: 160px;
    margin-bottom: 16px;
}

.request-intro-settings {
    margin-bottom: 16px;
}

.avatar-row {
    display: inline-flex;
    flex-direction: row-reverse;
    position: relative;
    cursor: pointer;
}

.avatar-row-item {
    flex-shrink: 0;
    height: 36px;
    width: 36px;
    border-radius: 50%;
    border: 2px solid currentColor;
    background: currentColor;
    order: 1;
}

.avatar-row-fallback-icon {
    background: var(--neutral-white);
    border-radius: 50%;
    height: 36px;
    width: 36px;
}

.avatar-row .avatar-row-item {
    margin-left: -12px;
    transition: margin-left .15s cubic-bezier(.4, 0, 0,1);
}

.popup-toggle-active > .avatar-row .avatar-row-item,
.avatar-row:hover .avatar-row-item {
   margin-left: -8px;
}

.avatar-row-excess {
    margin: auto 0 auto 4px;
    font-weight: bold;
    order: 0;
}

.avatar-row-header .icon {
    margin: 8px;
}

.enum-float {
    z-index: 2;
    padding: 5px 0;
    border-radius: 5px;
    background: white;
    border: 1px solid var(--neutral-200);
    box-shadow:
        0 2px var(--alpha-50),
        0 2px 4px var(--alpha-50);
}

.enum-float {
    white-space: nowrap;
    margin-top: 4px;
}

.list-enum.enum-input {
    display: inline-block;
}

.enum-float a {
    height: 32px;
    line-height: 32px;
    padding: 0 32px 0 4px;
    color: var(--neutral-600);
    cursor: pointer;
}

.enum-float a {
    white-space: pre;
    display: block;
    padding-left: 16px;
    font-size: 16px;
}

.enum-float a:hover {
    background: var(--neutral-050);
    border-left: 2px solid var(--active-700);
    margin-left: -1px;
    text-indent: -1px;
    color: var(--neutral-750);
}


.text-actions {
  color: var(--neutral-600);
  border: 1px solid var(--neutral-200);
  border-radius: 4px;
  padding: 4px;
  display: flex;
  align-items: center;
  overflow: hidden;
  margin: 16px 0;
}

.text-actions-text {
    word-wrap: break-word;
    flex-grow: 1;
    min-width: 0;
    padding: 4px 0;
}

.text-actions-text:first-child {
    padding-left: 8px;
}

.text-actions-text-obfuscated {
    color: var(--neutral-400);
}

.text-actions-actions {
    flex-shrink: 0;
    display: flex;
}

.text-actions-actions-left {
    margin-right: 4px;
}

.text-actions-actions-right {
    margin-left: 8px;
}

.text-actions-action {
    fill: var(--neutral-200);
    cursor: pointer;
}

.text-actions-action:hover {
    fill: var(--neutral-600);
}

.candidate-description-field-wrap {
    position: relative;
    margin-bottom: 16px;
}

.candidate-description-checkboxes {
    margin-bottom: 32px;
}

.candidate-description-checkbox {
    margin-right: 24px;
}

.candidate-description-field-wrap .floating-input-wrap {
    text-align: left;
}

.candidate-description-field-wrap .floating-input-wrap {
    width: 100%;
}

.candidate-description-field-wrap .typeahead {
    left: 0;
    right: 0;
    top: calc(100% + 8px);
}

.candidate-description-boolean-wrap {
    border: 1px solid var(--neutral-200);
    padding: 16px;
    border-radius: 4px;
    margin-top: 8px;
}

.candidate-description-experience {
    margin: 16px 0;
    color: var(--neutral-600);
}

.block-listenum .checkbox:not(:last-child) {
    display: block;
    margin-bottom: 12px;
}

.list-enum .checkbox {
    display: block;
    padding: 10px 12px;
    margin: 0;
}

.list-enum-group-label {
    color: var(--neutral-400);
    text-transform: uppercase;
    font-size: 10px;
    font-weight: 700;
    display: flex;
    padding: 8px 12px;
}

.block-list-enum-group-label {
    padding: 12px 0;
}

.list-enum-group:first-child .block-list-enum-group-label {
    padding-top: 0;
}

.list-enum-group-label::after {
    content: '';
    display: block;
    height: 1px;
    background: currentColor;
    width: 100%;
    flex-basis: 0;
    flex-grow: 1;
    margin: auto 0 auto 8px;
}

.card-status-tags-header {
    position: absolute;
    top: 16px;
    left: 37px;
}

.list-activity-pills-container {
    display: flex;
    align-items: center;
}

.active-status-tag {
    border: none;
    font-size: 14px;
    text-transform: none;
    padding: 9px 12px;
    margin: 0;
    color: var(--neutral-400);
    display: inline-block;
}

.active-status-tag .icon {
    transform: translateY(-1px);
}

.card-status-tags {
    display: flex;
    height: 36px;
    align-items: center;
}
.card-status-tags:not(:last-child) {
    margin-right: 8px;
}

.assignment-avatar {
    border-radius: 50%;
    border: 2px solid var(--teal-500);
    height: 34px;
    width: 34px;
}

.expanding-textarea-top {
    display: flex;
    gap: 8px;
}

.expanding-textarea-avatar {
    border-radius: 50%;
    margin-top: 8px;
    height: 24px;
    width: 24px;
    flex-shrink: 0;
}

.expanding-textarea-input {
    box-sizing: border-box;
    flex-grow: 1;
    border-radius: 8px;
    line-height: 22px;
}

.expanding-textarea-input:not(.expanding-textarea-input-expanded) {
    height: 40px;
}

.expanding-textarea-footer {
    margin-top: 12px;
    padding-left: 32px;
    display: flex;
    gap: 8px;
    align-items: center;
}

.expanding-textarea-footer > .button,
.expanding-textarea-footer .button-tray-toggle {
    background: var(--neutral-white);
}

.footer {
    padding: 50px 0 20px;
    width: 100%;
    text-align: center;
}

.footer a,
.footer {
    color: var(--neutral-400);
    font-size: 13px;
}

.footer a {
    text-decoration: none;
}

.footer-chunk {
    margin: 0 15px;
    display: inline-block;
}


.footer a:hover {
    text-decoration: underline;
}

.login-wrap .footer {
    padding-top: 32px;
    width: 512px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
}

.login-wrap .footer :first-child {
    margin-left: 0;
}
.login-wrap .footer :last-child {
    text-align: right;
    flex-grow: 100;
    margin-right: 0;
}

.signup-wrap .footer {
    padding-top: 0;
}



.square-pill {
    display: inline-flex;
    background-color: var(--active-100);
    border-radius: 2px;
    cursor: default;
    padding: 4px 4px 4px 8px;
    margin-right: 4px;
    margin-bottom: 4px;
    font-size: 14px;
    line-height: 18px;
}

.square-pill-selected {
    background-color: var(--active-200);
}

.square-pill-close {
    outline: none;
    background: none;
    border: 0;
    padding: 0;
    margin-top: 2px;
    margin-left: 4px;
    cursor: pointer;
    line-height: 0;
    flex-shrink: 0;
    align-self: flex-start;
}

.square-pill-input {
    height: 28px;
    line-height: 28px;
    margin-bottom: 2px;
    margin-left: 8px;
}

.blurb-box {
  border: 1px solid var(--neutral-150);
  border-radius: 8px;
  padding: 24px;
  background-image: url('/static/images/portrait-female-right-corner.svg');
  padding-right: 160px;
  background-position: 100% 100%;
  background-repeat: no-repeat;
  margin-bottom: 16px;
  font-size: 14px;
}

.blurb-box h3 {
  color: var(--neutral-800);
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 16px;
  max-width: 720px;
}

.blurb-box p {
    color: var(--neutral-600);
    margin: 16px 0 0;
    font-size: 14px;
    max-width: 720px;
}

.blurb-cta {
    margin-top: 32px;
}

.app-content-sidebar-nav {
    font-size: 14px;
    line-height: 14px;
    padding-top: 24px;
}

.app-content-sidebar-link {
    cursor: pointer;
    display: block;
    color: var(--neutral-600);
    padding: 8px 0;
    margin-bottom: 4px;
}

.app-content-sidebar-link-active {
    color: var(--neutral-800);
    font-weight: bold;
}

.app-content-sidebar-subtext {
    font-size: 12px;
    line-height: 14px;
    margin-left: 8px;
}

.app-content-sidebar-link-active .app-content-sidebar-subtext {
    color: var(--neutral-600);
    font-weight: bold;
}

.transient-input-label-wrap {
  display: inline-flex;
  align-items: flex-start;
}

.transient-input-label {
  font-weight: bold;
  font-size: 20px;
  line-height: 24px;
}

.transient-input-icon {
  fill: var(--neutral-400);
  cursor: pointer;
  flex-shrink: 0;
  margin-left: 8px;
}

.transient-input-control {
  height: 30px;
  line-height: 32px;
  border: 1px solid var(--neutral-200);
  border-radius: 2px;
  padding: 0 8px;
  display: block;
  width: 100%;
  outline: none;
}

.transient-input-control:focus {
  border-color: var(--active-700);
}

.permission-gate {
    background-color: var(--neutral-000);
    border-radius: 8px;
    padding: 24px;
    background-image: url('/static/images/portrait-female-right-corner.svg');
    padding-right: 160px;
    background-position: 100% 100%;
    background-repeat: no-repeat;
    margin-bottom: 16px;
    border: 1px solid var(--neutral-150);
}

.permission-gate h3, .module-gate h3 {
    font-weight: bold;
    font-size: 16px;
    margin: 0 0 8px;
}

.permission-gate p {
    color: var(--neutral-600);
}

.virtual-list.ReactVirtualized__Grid,
.virtual-list .ReactVirtualized__Grid__innerScrollContainer {
    /* needed so that tooltips aren't cropped */
    overflow: visible!important;
}

.ReactVirtualized__Table__headerRow,
.ReactVirtualized__Table__row {
    display: flex;
}

.ReactVirtualized__Table__rowColumn {
    text-overflow: ellipsis;
}

.ReactVirtualized__Table__rowColumn {
    padding-left: 16px;
}

.ReactVirtualized__Table__headerColumn {
    padding-left: 16px;
    padding-top: 16px;
}

.select-pill-options {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.select-pill-wrap {
    display: inline-block;
}

.select-pill-option {
    display: inline-block;
    border-radius: 2px;
    background: var(--alpha-50);
    font-size: 13px;
    line-height: 24px;
    padding: 0 8px;
    cursor: pointer;
    border: 0;
}

.select-pill-option-selected {
    background: var(--active-100);
}

.select-pill-prompt {
    margin-bottom: 12px;
}

.empty-callout {
    text-align: center;
    margin: 64px 0;
}

.empty-callout-image {
    margin-bottom: 24px
}

.empty-callout-text {
    color: var(--neutral-600);
    font-style: italic;
}

.contributor-upload-network {
    color: var(--neutral-600);
    padding:10px 20px;
    background: var(--neutral-white);
    font-style: normal;
    border-radius: 18px;
    margin-top: 10px;
    display:inline-block;
    font-weight: bold;
}
.tip {
    border: 1px solid var(--purple-200);
    background: var(--purple-050);
    padding: 12px;
    margin: 24px 0;
    border-radius: 4px;
    display: flex;
}

.tip-icon {
    width: 24px;
    height: 24px;
    vertical-align: top;
    margin-right: 12px;
}

.tip-text {
    display: inline-block;
    margin: auto 0;
    width: calc(100% - 40px);
}

.four-oh-four {
    display: flex;
    height: 100vh;
    width: 100vw;
    max-width: 100%;
}

.four-oh-four-content {
    width: 100%;
    max-width: 675px;
    margin: auto;
    text-align: center;
}

.four-oh-four img {
    display: block;
    margin: 0 auto 40px;
}

.four-oh-four-link {
    font-weight: bold;
    color: var(--blue-800);
}

.debug-initial-query-button {
    color: #fd9865;
    font-size: 16px;
    position: absolute;
    bottom: 0;
    right: 0;
    padding: 15px;
    font-family: Monaco, monospace;
}

.debug-initial-query {
    padding: 15px;
    font-family: Monaco, monospace;
    font-size: 12px;
    white-space: pre;
}

.placeholder-card {
    border-radius: 5px;
    border: 1px solid var(--neutral-200);
    background: var(--neutral-050);
    margin-bottom: 24px;
    padding: 20px;
    text-align: center;
    font-size: 14px;
}

.placeholder-card-link {
    float: right;
}

.boards-featured-toggler-radios {
    padding-left: 40px;
}

.boards-featured-toggler-radios .radio {
    display: block;
    margin: 12px 0;
}

.boards-featured-toggler-radios .react-datepicker-wrapper {
    width: 100%;
}

.privacy-status {
    margin: 32px 0;
}

.privacy-status-icon {
    vertical-align: bottom;
    margin-right: 8px;
}

.privacy-status .tooltip {
    padding: 16px;
    max-width: 448px;
}

.login-email-wrap {
    display: inline-flex;
    margin: 0 auto;
    font-weight: bold;
    justify-content: space-between;
}

.login-email-label {
    margin-right: 32px;
}

.backend-json a {
    color: #ccc;
    font-size: 18px;
    font-weight: bold;
    padding-left: 5px;
    font-family: Monaco, monospace;
}


.sequences-top-bt {
    border: 0;
    padding: 0;
    padding-right: 14px;
    background: none;
    color: var(--neutral-600);
    fill: var(--neutral-200);
    display: inline-block;
    margin: 24px 0 16px;
}

.new-sequence-button {
    fill: var(--active-700);
}

.sequence-edit-wrap {
    padding: 32px;
    min-height: 700px;
    display: flex;
    flex-direction: column;
}

.sequence-edit {
    display: grid;
    grid-template-columns: 160px minmax(0, 1fr);
    grid-template-rows: 100%;
    border: 1px solid var(--neutral-150);
    border-radius: 8px;
    box-sizing: border-box;
    font-size: 14px;
    margin-bottom: 16px;
    flex-grow: 1;
}

.sequence-edit-wide {
    grid-template-columns: 1fr;
}

.sequence-edit *, .sequence-edit *::before, .sequence-edit *::after {
    box-sizing: inherit;
}

.sequence-edit-sidebar {
    border-right: 1px solid var(--neutral-150);
    padding: 12px 16px;
    color: var(--neutral-600);
}

.sequence-edit-add-step {
    border: 0;
    padding: 0;
    outline: none;
    background: none;
    margin-bottom: 8px;
    margin-left: -9px;
}

.sequence-edit-add-step svg {
    fill: var(--neutral-400);
}

.sequence-edit-sidebar-steps {
    border-bottom: 1px solid var(--neutral-150);
}

.sequence-sidebar-link {
    height: 40px;
    line-height: 40px;
    position: relative;
    outline: none;
    border: 0;
    padding: 0;
    background: none;
}

.sequence-edit-sidebar-step::before {
    content: '';
    display: inline-block;
    border: 2px solid var(--neutral-200);
    background: var(--neutral-white);
    height: 13px;
    width: 13px;
    border-radius: 50%;
    margin-right: 12px;
    vertical-align: middle;
    position: relative;
    z-index: 1;
}

.sequence-edit-sidebar-link-active {
    font-weight: bold;
    color: var(--neutral-800);
}

.sequence-edit-sidebar-link-active.sequence-edit-sidebar-step::before {
    border-color: var(--active-700);
}

.sequence-edit-sidebar-step + .sequence-edit-sidebar-step::after {
    content: '';
    display: block;
    position: absolute;
    left: 6px;
    width: 1px;
    background: var(--neutral-200);
    height: 40px;
    top: -18px;
}

.sequence-edit-sidebar-step::last-child {
    margin-bottom: -1px;
}

.sequence-settings-icon {
    /*
     * pretty ugly but doesn't really line up with
     * the sizing of the email dot things so whatever
     */
    margin-left: -1px;
    margin-right: 10px;
    fill: var(--neutral-200);
}

.sequence-edit-sidebar-link-active .sequence-settings-icon {
    fill: var(--active-700);
}

.sequence-select-sender .Select-option.is-disabled {
    cursor: pointer;
}

.sequence-edit-line {
    height: 40px;
    padding: 0 16px;
    border-bottom: 1px solid var(--neutral-150);
    display: flex;
}

.sequence-edit-line-label {
    flex-shrink: 0;
}

.sequence-edit-line-label {
    color: var(--neutral-600);
    margin: auto 8px auto 0;
    line-height: 40px;
}

.sequence-edit-line-content {
    width: 100%;
    margin: auto 0;
    display: flex;
    align-items: center;
}
.sequence-edit-line-content .sequence-select-sender {
    flex-grow: 1;
}

.sequence-select-set-up-sender {
    color: var(--blue-800);
}

.sequence-edit-line-content.auth-error .inline-tray-toggle {
    color: var(--red-700);
}

.sequence-edit-subject {
    border: 0;
    outline: 0;
    height: 100%;
    line-height: 100%;
    width: 100%;
}

.sequence-edit-sender-email {
    color: var(--neutral-600);
}

.sequences-body {
    flex-grow: 1;
    min-height: 268px;
}

.sequences-body .rdw-editor-wrapper {
    border: 0;
}

.sequence-edit-toolbar {
    display: flex;
    align-content: center;
    padding: 0 16px;
    border-bottom: 1px solid var(--neutral-150);
}

.sequence-edit-toolbar-tab {
    font-weight: bold;
    color: var(--neutral-600);
    margin: auto 0;
    padding: 16px 0 14px;
    border-bottom: 2px solid transparent;
    margin-bottom: -1px;
    margin-right: 24px;
    cursor: pointer;
}

.sequence-edit-toolbar-tab-active {
    border-color: var(--active-700);
    color: var(--neutral-800);
}

.sequence-edit-toolbar-button {
    margin: auto 0 auto auto;
    border: 0;
    background: none;
    padding: 0;
    fill: var(--neutral-400);
    outline: none;
    line-height: 0;
}

.sequences-var-tokens {
    padding: 8px 12px;
    border-top: 1px solid var(--neutral-150);
}

.sequences-var-token {
    display: inline-block;
    border: 0;
    background: var(--neutral-100);
    border-radius: 4px;
    margin-right: 4px;
    margin-bottom: 4px;
    height: 24px;
    line-height: 24px;
    padding: 0 8px;
    font-size: 12px;
}

.sequence-overview {
    border: 1px solid var(--neutral-150);
    border-radius: 8px;
    padding: 24px;
    margin-bottom: 16px;
    position: relative;
}

.sequence-overview-actions {
    position: absolute;
    top:  15px;
    right: 15px;
}

.sequence-overview-name {
    font-weight: bold;
    font-size: 24px;
    margin-bottom: 16px;
}

.sequence-overview-meta {
    color: var(--neutral-600);
    margin: 16px 0;
}

.sequence-overview-meta-item:not(:last-child)::after {
    content: '·';
    display: inline-block;
    margin: 0 8px;
}

.sequence-overview-data {
    margin-bottom: 24px;
}

.sequence-overview-data .table-data-row:last-child {
    font-weight: bold;
}

.sequence-overview-percent {
    color: var(--neutral-600);
}

.sequence-settings {
    padding: 24px;
}

.sequence-settings p {
    margin-top: 0;
}

.sequence-settings .fancy-checkbox-text {
    font-weight: normal;
}

.sequence-list-name {
    font-size: 14px;
    margin-bottom: 8px;
}

.sequence-title {
    margin-bottom: 16px;
}

.add-to-sequence-header {
    border: 1px solid var(--neutral-150);
    border-radius: 4px;
    margin-bottom: 16px;
    padding: 16px;
}

.add-to-sequence-name {
    font-weight: bold;
    font-size: 16px;
    line-height: 20px;
    margin-bottom: 4px;
}

.add-to-sequence-headline p {
    margin: 0;
}

.add-to-sequence-headline * {
    font-weight: normal;
}

.add-to-sequence-override {
    border: 1px solid var(--neutral-150);
    border-radius: 4px;
    margin: 16px 0;
}

.add-to-sequence-override-header {
    padding: 16px;
    background: var(--neutral-000);
    border-top-right-radius: 4px;
    border-top-left-radius: 4px;
}

.add-to-sequence-override-footer {
    padding: 16px;
    background: var(--neutral-000);
    border-bottom-right-radius: 4px;
    border-bottom-left-radius: 4px;
}

.add-to-sequence-override-header .button,
.add-to-sequence-override-footer .button {
    height: 34px;
    background: var(--neutral-white);
}

.add-to-sequence-override-header-text {
    display: flex;
    align-items: center;
}

.add-to-sequence-override-header-delay-text {
    color: var(--neutral-600);
    margin-left: 8px;
    margin-right: auto;
}


.sequence-edit-main {
    display: flex;
    flex-direction: column;
}

.sequence-edit-main-loading * {
    color: var(--neutral-400);
}

.add-to-sequence-emails-wrap {
    display: flex;
    justify-content: flex-start;
    margin-top: 16px;
}

.add-to-sequence-emails-wrap + .sequence-email-add {
    margin-top: 16px;
}

.add-to-sequence-emails {
    width: 100%;
}

.add-to-sequence-emails .Select-menu {
    width: 100%;
}

.add-to-sequence-emails .Select-control {
    line-height: inherit;
    height: 44px;
}

.add-to-sequence-email {
    display: inline-block;
    margin-bottom: 8px;
}

.add-to-sequence-actions {
    display: flex;
    align-items: center;
}

.sequence-edit-preview {
    padding: 0 16px;
    height: 100%;
    overflow: auto;
}

.sequence-errors {
    margin: 16px 0;
    display: flex;
    align-items: flex-start;
    border-radius: 4px;
    border: 1px solid var(--red-700);
    padding: 10px 12px;
}

.sequence-error + .sequence-error {
    margin-top: 10px;
}

.sequence-error-icon {
    margin-top: 2px;
    margin-right: 8px;
    fill: var(--red-700);
    flex-shrink: 0;
}

.sequence-success-icon {
    margin-right: 8px;
    margin-left: -2px;
    flex-shrink: 0;
}

.sequence-email-add {
    background: var(--neutral-100);
    padding: 16px;
    border-radius: 4px;
}

.sequence-email-add-header {
    font-weight: bold;
    margin-bottom: 16px;
}

.sequence-email-form {
    display: flex;
}

.sequence-email-add-button {
    border: 0;
    background: var(--neutral-200);
    height: 24px;
    width: 24px;
    border-radius: 50%;
    padding: 0;
    margin-left: 12px;
}

.sequence-email-add-button + .sequence-email-add-button {
    margin-left: 8px;
}

.sequence-email-add-button:hover {
    background: var(--active-700);
}

.sequence-email-add-button .icon {
    height: 24px;
    width: 24px;
    padding: 2px;
}

.sequence-email-form .floating-input-wrap {
    flex-grow: 1;
    background: var(--neutral-white);
}

.add-to-sequence-missing-email {
    color: var(--red-700);
    line-height: 16px;
}

.add-to-sequence-missing-email svg {
    fill: currentColor;
    margin-right: 6px;
    vertical-align: top;
}

.add-to-sequence-email-add-button {
    cursor: pointer;
    white-space: nowrap;
    flex-shrink: 0;
    margin-left: 10px;
}

.add-to-sequence-email-add-button svg {
    vertical-align: top;
    margin-right: 6px;
    fill: var(--active-700);
}

.sequence-recipient-data .table-data-row td {
    background: none;
    border-bottom: 1px solid var(--neutral-100);
}

.sequence-recipient-data .table-data-row:last-child td {
    border-bottom: none;
}

.sequence-recipient-data .table-data-row:hover td {
    background: var(--neutral-000);
}

.sequence-recipient-filters {
    border: 1px solid var(--neutral-150);
    border-radius: 8px;
    padding: 0 24px;
    color: var(--neutral-600);
    font-size: 12px;
    margin-bottom: 24px;
}

.sequence-recipient-filter-active {
    color: var(--neutral-800);
}

.sequence-recipient-filter {
    border: 0;
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: none;
    padding: 12px 0;
    margin-right: 32px;
}

.sequence-recipient-filter-active {
    border-bottom: 2px solid var(--active-700);
    margin-bottom: -1px;
    padding-bottom: 11px;
}

.sequence-recipient-filter-count {
    font-size: 20px;
    line-height: 32px;
    margin-bottom: 4px;
}

.sequence-recipient-filter-percent {
    margin-bottom: 4px;
}

.sequence-recipient-name {
    cursor: pointer;
    color: var(--blue-800);
}

.sequence-review-actions {
    display: flex;
    justify-content: flex-end;
}

.sequence-review-action {
    width: 32px;
    height: 32px;
    margin-left: 8px;
    border: 0;
    background: var(--neutral-white);
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 0;
    border-radius: 50%;
    fill: var(--neutral-300);
}

.sequence-review-action:hover {
    fill: var(--neutral-800);
}

.sequences-list-empty-wrap {
    max-width: 976px;
    margin: 40px auto;
}

.sequences-list-empty {
    border-radius: 8px;
    padding: 40px;
    border: 1px solid var(--neutral-150);
    position: relative;
    margin-bottom: 16px;
    display: flex;
}

.sequences-list-empty p {
    margin-top: 0;
}

.sequences-list-empty .button {
    margin-top: 32px;
}

.sequences-list-empty-text {
    width: 100%;
    margin-right: 24px;
}

.sequences-list-empty-img {
    align-self: flex-end;
}

.sequences-list-empty-header {
    cursor: pointer;
}

.sequences-list-empty-header {
    font-size: 16px;
    line-height: 20px;
    margin-bottom: 20px;
    font-weight: bold;
}

.sequences-list-empty-content {
    font-size: 14px;
    color: var(--neutral-600);
    margin-bottom: 20px;
}

.sequence-overview-bools {
    margin: 20px 0;
}

.sequence-overview-bools .fancy-checkbox {
    display: inline-flex;
    margin-right: 12px;
}

.sequence-dalay-input .floating-input-content {
    width: 142px;
}

.sequence-time-range-input .floating-input-content {
    width: 146px;
}

.sequence-settings-days {
    margin: 24px 0 32px;
}

.sequence-setting-input-block {
    display: flex;
    margin: 16px 0 24px;
}

.sequence-setting-input-block > * {
    margin-right: 8px;
    flex-grow: 0;
    flex-shrink: 0;
}

.sequence-setting-input-block > :last-child {
    flex-grow: 1;
}

.sequence-limit-banner {
    background-color: var(--neutral-000);
    background-image: url('/static/images/portrait-female-right-corner.svg');
    background-position: 100% 100%;
    padding: 24px 144px 32px 24px;
    border-radius: 8px;
    background-repeat: no-repeat;
    margin-bottom: 32px;
}

.sequence-limit-banner-header {
    font-weight: bold;
    margin-bottom: 8px;
}

.sequence-progress-metrics {
    margin: 8px 0;
}

.sequence-progress-metric {
    display: inline-block;
    margin-right: 32px;
}

.sequence-progress-bar {
    vertical-align: baseline;
    display: inline-block;
    margin-left: 6px;
}

.add-to-sequence-limit-teaser {
    color: var(--blue-800);
    cursor: pointer;
    margin-left: auto;
}

.sequences-modal-limit-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right:0;
    bottom: 0;
    background: var(--alpha-200);
    z-index: 1;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    border-radius: 5px;
}

.sequences-modal-limit-overlay-content {
    position: relative;
    padding: 32px;
    background: var(--neutral-white);
}

.sequences-modal-limit-close {
    position: absolute;
    top: 32px;
    right: 32px;
    fill: var(--neutral-400);
    cursor: pointer;
}

.sequences-modal-limit-header {
    font-weight: bold;
    font-size: 20px;
    line-height: 24px;
    margin-bottom: 24px;
}

.sequence-add-profile-limit-blurb {
    background-color: var(--neutral-000);
    background-image: url('/static/images/portrait-female-right-corner.svg');
    background-position: 100% 100%;
    padding: 24px;
    border-radius: 8px;
    background-repeat: no-repeat;
    padding-right: 160px;
    margin: 24px 0 32px;
}

.sequence-overview-external-banner {
    border: 1px solid var(--teal-500);
    border-radius: 4px;
    display: flex;
    align-items: center;
    margin-bottom: 16px;
    padding: 8px 12px;
    line-height: 16px;
}

.sequence-overview-external-banner svg {
    flex-shrink: 0;
    fill: var(--teal-500);
    margin-right: 12px;
}

.email-selection-option {
    display: flex;
    justify-content: space-between;
    padding: 0 10px 0 18px;
    height: auto;
    align-items: center;
    margin-left: 0 !important;
    text-indent: 0 !important;
    border-left: 2px solid transparent;
}

.email-selection-option-mail-source {
    display: flex;
    flex-direction: column;
    line-height: 20px;
    padding: 12px 0;
    flex-basis: 150px;
    margin-right: 16px;
}

.email-selection-option-info {
    flex-grow: 1;
    margin-right: 40px;
    overflow: hidden;
    text-overflow: ellipsis;
}

.email-selection-option-mail-source small {
    font-size: 12px;
}

.email-selection-option-icon {
    align-self: center;
    flex-shrink: 0;
}

.two-line-selection {
    display: flex;
    flex-direction: column;
    line-height: 20px;
}

.two-line-selection small {
    font-size: 12px;
    color: var(--neutral-600);
}

.sequence-settings-share {
    border-top: 1px solid var(--neutral-150);
    margin-top: 16px;
    padding-top: 32px;
}

.sequence-settings-share-text {
    margin: 4px 0 0;
    color: var(--neutral-600);
    padding-left: 32px;
}

.sequence-gen-form,
.sequence-gen-loader-content {
    width: 640px;
    max-width: 100%;
}

.sequence-gen-option-select {
    width: 864px;
    max-width: 100%;
}

.sequence-gen-form-section {
    margin-bottom: 24px;
}

.sequence-gen-form .textarea-primary {
    height: 72px;
}

.sequence-gen-form-input-wrap {
    display: flex;
    margin-bottom: 8px;
}

.sequence-gen-form-input-label {
    flex-basis: 160px;
    flex-shrink: 0;
    margin-right: 8px;
    line-height: 32px;
}


.sequence-gen-form-select {
    flex-grow: 1;
}

.sequence-gen-option-input {
    border: 1px solid var(--neutral-200);
    height: 32px;
    padding: 0 16px;
    border-radius: 32px;
    line-height: 32px;
    display: inline-flex;
    align-items: center;
    font-weight: bold;
    margin: 0 8px;
    background: var(--neutral-white);
}

.sequence-gen-option-input-label {
    margin-right: 12px;
}

.sequence-gen-option-input-item {
    padding: 0 12px;
    color: var(--neutral-600);
    cursor: pointer;
}

.sequence-gen-option-input-item .small-loader {
    margin: auto 0;
    display: block;
    cursor: default;
}

.sequence-gen-option-input-item-selected {
    background: var(--active-700);
    color: var(--neutral-800);
}

.sequence-gen-button {
    height: 32px;
    padding: 0 16px 0 0;
    line-height: 30px;
    border: 1px solid var(--neutral-200);
    background: none;
    border-radius: 32px;
    font-weight: bold;
    background: var(--neutral-white);
}

.sequence-gen-button svg {
    fill: var(--neutral-600);
    vertical-align: top;
}

.sequence-gen-footer {
    margin-top: 24px;
}

.sequence-gen-loader-wrap {
    border: 1px solid var(--neutral-200);
    border-radius: 8px;
    text-align: center;
    padding: 24px;
}

.sequence-gen-loader-wrap .consider-loader-wrapper {
    padding: 0;
    margin-bottom: 16px;
}

.sequence-gen-loader-wrap .consider-loader-inner {
    transform: scale(1);
}

.sequence-gen-loader-message {
    display: inline-block;
    margin: 0 auto;
    color: var(--neutral-600);
}

/* https://codepen.io/andysanchez-dev/pen/GYPevV */
.sequence-gen-loader-message span {
    position: relative;
    overflow: hidden;
    display: block;
    line-height: 1.2;
}

.sequence-gen-loader-message span::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: var(--neutral-000);
    animation: sequence-gen-after 2s cubic-bezier(.77,0,.18,1) forwards;
    transform: translateX(-101%);
}

.sequence-gen-loader-message span::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: var(--neutral-white);
    animation: sequence-gen-before 2s cubic-bezier(.77,0,.18,1) forwards;
    transform: translateX(0);
}

@keyframes sequence-gen-after {
    0% {transform: translateX(-100%)}
    100% {transform: translateX(101%)}
}

@keyframes sequence-gen-before {
    0% {transform: translateX(0)}
    100% {transform: translateX(200%)}
}

.sequence-gen-beta-message {
    display: flex;
    align-items: center;
    margin: 24px 0;
}

.sequence-gen-beta-message img {
    margin-right: 8px;
}

.sequence-gen-error-message {
    padding: 24px;
    border: 1px solid var(--neutral-200);
    border-radius: 8px;
    text-align: center;
    margin: 24px 0;
    color: var(--neutral-600);
}

.sequence-gen-error-message svg {
    border-radius: 50%;
    fill: var(--neutral-200);
    border: 2px solid var(--neutral-200);
    display: inline-block;
}

.sequence-gen-error-message-header {
    font-weight: bold;
    margin: 24px 0 4px;
}

.sequence-gen-form .sequence-select-sender {
    width: 100%;
    border: 1px solid var(--neutral-200);
    border-radius: 4px;
    padding-left: 12px;
    line-height: 30px;
}

.sequence-email-body-formatted {
    white-space: pre-wrap;
    padding: 16px;
}

.sequence-ai-personalize-button {
    display: inline-flex;
    align-items: center;
    border-width: 1px;
    height: 32px;
}

.sequence-ai-personalize-button img {
    margin-left: 8px;
}

.sequence-personalize-ai-header-text {
    display: flex;
    align-items: center;
    font-weight: bold;
    font-size: 16px;
    margin: 12px 0 16px;
}

.sequence-personalize-ai-header-text img {
    margin-right: 8px;
}

.sequence-ai-personalize-controls {
    display: flex;
}

.sequence-ai-personalize-skills {
    flex-basis: 60%;
    margin-right: 8px;
    flex-grow: 1;
}

.sequence-ai-personalize-connection {
    flex-grow: 1;
}

.add-to-sequence-override-header .sequence-gen-option-input {
    margin-left: 0;
}

.add-to-sequence-override-footer-text {
    color: var(--neutral-600);
    margin: 0 8px;
}

.sequence-gen-form-required-asterisk {
    color: var(--red-700);
    font-weight: bold;
}

.sequence-gen-more-inline {
    font-weight: normal;
    margin-left: 8px;
    cursor: pointer;
}

.sequence-gen-back {
    margin-right: 8px;
}

.add-to-sequence-personalization-settings {
    display: flex;
    color: var(--neutral-600);
    margin-bottom: 16px;
}

.add-to-sequence-personalization-setting {
    display: inline-flex;
    overflow: hidden;
    white-space: nowrap;
}

.add-to-sequence-personalization-setting strong {
    margin-right: 8px;
}

.add-to-sequence-personalization-setting span {
    overflow: hidden;
    text-overflow: hidden;
    margin-right: 16px;
}

.add-to-sequence-override-sent-date {
    margin-left: auto;
    display: inline-flex;
    align-items: center;
}

.add-to-sequence-override-sent-date svg {
    margin-left: 8px;
    background: var(--green-500);
    fill: var(--neutral-white);
    border-radius: 50%;
}

.add-to-sequence-override-sent {
    background-color: var(--neutral-000);
}

.add-to-sequence-override-sent .add-to-sequence-override-header {
    border-bottom: 1px solid var(--neutral-150);
}

.sequence-missing-locked-sender {
    color: var(--red-700);
}

.sequence-project-select-text {
    color: var(--neutral-600);
    margin: 8px 0;
}

.sequence-list-toolbar-buttons {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    line-height: 32px;
}

.sequence-list-filters {
    display: flex;
    gap: 8px;
}

.sequences-list-license-banner {
    color: var(--neutral-800);
    border: 1px solid var(--red-700);
    border-radius: 4px;
    padding: 12px 16px;
    line-height: 16px;
    margin-bottom: 16px;
}

.sequences-list-license-banner svg {
    fill: var(--red-700);
    margin-right: 8px;
}

.sequences-list-gen-ai-toggle {
    color: var(--blue-800);
    margin-left: 8px;
}

.sequence-gen-job-summary-count-wrap {
    font-size: 12px;
    line-height: 1;
    color: var(--neutral-600);
}

.sequence-gen-job-summary-count-active {
    color: var(--green-700);
}

.sequence-gen-job-summary-count-red {
    color: var(--red-700);
}

.sequence-gen-textarea-red {
    border-color: var(--red-700);
}

.project-participants-actions {
    background: var(--neutral-000);
    border-radius: 4px;
    align-items: center;
    padding: 8px;
    margin-bottom: 24px;
    display: flex;
}
.project-participants-actions > * {
    margin-right: 16px;
    padding: 8px;
    border-radius: 4px;
}

.project-participants-actions > * svg {
    margin-top: -2px;
    margin-right: 5px;
}

.project-participants-actions > *:hover {
    background-color: var(--neutral-white);
}

.project-participants-share-button svg,
.project-participants-transfer svg {
    fill: var(--neutral-600);
}

.project-participants-add svg {
    fill: var(--active-700);
}

.project-participants {
  border-radius: 8px;
  border: 1px solid var(--neutral-200);
}

.project-participant + .project-participant {
    border-top: 1px solid var(--neutral-200);
}

.project-participants-footer {
  background: var(--neutral-000);
  padding: 18px 24px;
  border-radius: 0 0 8px 8px;
}

.project-participant-active {
    border-left: 2px solid var(--active-700);
}

.project-participant-active .project-participant-main {
    padding-left: 13px;
}

.project-participant-toggle {
    fill: var(--neutral-200);
    margin-left: 16px;
}

.project-participant-main {
    display: flex;
    align-items: center;
    padding: 15px;
}

.project-participant-main.clickable:hover {
    cursor: pointer;
    background: var(--alpha-50);
}

.project-participant-expanded-section {
    margin-left: 56px;
    margin-top: 16px;
}

.project-participant-expanded-section .fancy-checkbox {
    margin-bottom: 12px;
}

.project-participant-role-label-wrap {
    font-weight: normal;
}

.project-participant-role-sublabel {
    margin-left: 8px;
    color: var(--neutral-600);
}

.project-participant-avatar {
  height: 32px;
  width: 32px;
  border-radius: 50%;
  margin-right: 12px;
}

.project-member-details {
    margin-right: auto;
}

.project-participant-name {
  font-weight: bold;
  font-size: 14px;
}

.project-participant-email {
    font-size: 12px;
    color: var(--neutral-600);
}

.project-participant-tags {
    margin-right: 8px;
}

.project-participant-tag {
    display: inline-block;
    font-size: 12px;
    margin-left: 4px;
    background: var(--neutral-100);
    border-radius: 4px;
    height: 24px;
    line-height: 24px;
    padding: 0 8px;
}

.project-participant-transfer {
  color: var(--blue-800);
}

.project-participants-share {
  font-size: 14px;
  font-weight: bold;
}

.project-participants-share svg {
  fill: var(--active-700);
  margin-right: 12px;
}

.project-name-change-button {
  border: 0;
  background: var(--neutral-200);
  height: 24px;
  width: 24px;
  border-radius: 50%;
  padding: 0;
  margin-top: 8px;
  margin-left: 12px;
}

.project-name-change-button + .project-name-change-button {
  margin-left: 8px;
}

.project-name-change-button:hover {
  background: var(--active-700);
}

.project-name-change-button .icon {
  height: 24px;
  width: 24px;
  padding: 2px;
  box-sizing: border-box;
}

.project-help-blurb {
  display: flex;
  background: var(--neutral-000);
  border-radius: 8px;
  padding: 16px;
  margin-bottom: 32px;
}

.project-help-blurb-image-wrap {
  flex-shrink: 0;
}

.project-help-blurb-text {
  max-width: 580px;
  padding-left: 64px;
  padding-right: 16px;
}

.project-help-blurb:nth-of-type(2n) {
  flex-direction: row-reverse;
}

.project-help-blurb:nth-of-type(2n) .project-help-blurb-text {
  padding-right: 16px;
  padding-left: 64px;
}

svg.project-help-blurb-image-clip {
  overflow: visible;
}

.project-help-blurb-header {
  font-size: 20px;
  font-weight: bold;
  margin: 16px 0;
}

.project-help-blurb-body {
  color: var(--neutral-600);
}

.project-help-blurb-body p {
  margin: 16px 0;
}

.project-read-description {
  padding-top: 24px;
  color: var(--neutral-800);
}

.project-read-description-link {
  color: var(--blue-800);
  display: block;
  margin-bottom: 8px;
}

.project-read-description-header {
  font-size: 16px;
  font-weight: bold;
  margin-top: 32px;
  margin-bottom: 16px;
  position: relative;
}

.project-read-edit-icon {
  display: none;
}

.project-read-description:hover .project-read-edit-icon {
  display: block;
  position: absolute;
  right: 0;
  fill: var(--neutral-600);
  top: -6px;
  max-height: none;
}

.project-read-edit-icon:hover {
  border-radius: 50%;
  background: var(--alpha-50);
}

.project-read-description-sub-header {
  font-size: 12px;
  margin-bottom: 8px;
  color: var(--neutral-600);
}

.project-read-description-value {
  margin-bottom: 24px;
}

.project-read-description-value:not(:hover) a {
  color: inherit;
}

.project-read-description-owner {
  display: flex;
  align-items: center;
  margin-bottom: 24px;
}

.project-read-description-owner-avatar {
  height: 32px;
  width: 32px;
  border-radius: 50%;
  margin-right: 8px;
}

.project-read-description-owner-name {
  font-size: 14px;
  color: var(--neutral-800);
}

.project-read-description-owner-label {
  font-size: 12px;
  color: var(--neutral-600);
}

.project-note {
  color: var(--neutral-800);
  display: flex;
  background: var(--neutral-000);
  border-radius: 8px;
  overflow: hidden;
  font-size: 12px;
  margin-bottom: 24px;
}

.project-note-header {
  font-weight: bold;
  margin-bottom: 6px;
  font-size: 16px;
}

.project-note-body {
  padding: 32px;
  max-width: 560px;
  margin-right: auto;
}

.project-note-image-wrap {
  align-self: flex-end;
}

.project-controls {
  display: flex;
  align-items: center;
  margin-bottom: 24px;
  gap: 8px
}

.project-controls-left {
  margin-right: auto;
  display: inline-flex;
  align-items: center;
}

.project-export {
  margin-right: 16px;
}

.project-export .Select-menu {
  right: auto;
  left: 0;
}

.project-export-button,
.project-advanced-search {
  padding: 0;
  background: none;
  border: 0;
  color: var(--neutral-600);
  height: 32px;
  line-height: 32px;
  font-weight: bold;
}

.project-export-button .icon,
.project-advanced-search .icon {
  fill: var(--neutral-600);
}

.project-current-auto-export {
  display: flex;
  align-items: center;
  background: var(--neutral-000);
  border-radius: 4px;
  margin: 24px 0;
  padding: 16px;
}

.project-current-auto-export-body {
  flex-grow: 1;
  margin-right: 32px;
  color: var(--neutral-800);
}

.project-current-auto-export-ats-label {
  margin-bottom: 4px;
  font-size: 12px;
}

.project-current-auto-export-job-label {
  font-weight: bold;
}

.project-current-auto-export-change {
  cursor: pointer;
  color: var(--blue-800);
}

.project-advanced-search-banner {
  margin-bottom: 24px;
}

.project-details-form-ats-typeahead {
  position: relative;
  margin: 12px 0 24px 32px;
}

.project-details-form-checkbox {
  margin: 24px 0;
}

.project-details-enum .Select-control {
  height: auto;
  line-height: inherit;
}

.project-details-enum .Select-menu {
  top: calc(100% - 8px);
}

.project-details-enum .Select-control .Select-multi-value-wrapper {
  width: 100%;
}

.project-details-three-col {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-column-gap: 16px;
}

.project-details-two-col {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-column-gap: 16px;
}

.project-subfilter {
    margin-bottom: 24px;
}

.project-subfilter {
    border: 1px solid var(--neutral-200);
    height: 32px;
    line-height: 28px;
    border-radius: 32px;
    padding: 0 16px;
    font-weight: bold;
    outline: none;
    background: none;
    margin-right: 4px;
}

.project-subfilter-active {
    border-width: 2px;
    border-color: var(--active-700);
    line-height: 26px;
}

.project-subfilter-count {
    font-size: 12px;
    margin-left: 4px;
    color: var(--neutral-600);
}

.project-subfilter-badge {
    display: inline-block;
    height: 18px;
    line-height: 18px;
    vertical-align: top;
    margin-top: 5px;
    font-size: 10px;
    text-transform: uppercase;
    padding: 0 8px;
    border-radius: 2px;
    background: var(--neutral-150);
    margin-left: 10px;
}

.project-subfilter-active .project-subfilter-badge {
    margin-top: 4px;
}

.project-title {
    line-height: 32px;
}

.project-title-wrap .transient-input-label-wrap,
.project-title-wrap .transient-input-form,
.project-title-wrap .project-status-pill {
    vertical-align: middle;
}

.project-title-wrap .transient-input-form {
    display: inline-block;
}

.project-title-wrap .transient-input-control {
    box-sizing: border-box;
}

.project-title-wrap .project-status-pill {
    margin-left: 12px;
}

.app-header-breadcrumb .project-status-pill {
    margin-left: 12px;
}

.project-title-wrap .transient-input-label {
    font-size: 24px;
}

.project-cts-blurb-intro {
    border-radius: 8px;
    background: var(--neutral-000);
    padding: 24px;
}

.project-marketing-blurb-header {
    font-weight: bold;
    font-size: 16px;
    margin-bottom: 8px;
}

.project-marketing-blurb {
    border-radius: 8px;
    border: 1px solid var(--neutral-150);
    margin: 16px 0;
    padding: 32px 130px 32px 32px;
    background-image: url('/static/images/portrait-male-right-corner.svg');
    background-position: 100% 100%;
    background-repeat: no-repeat;
}

.project-marketing-blurb p {
    color: var(--neutral-600);
}

.project-cts-blurb-pills {
    margin-right: -4px;
    margin: 24px 0 16px;
}

.project-cts-blurb-pill {
    display: inline-flex;
    align-items: center;
    margin-right: 4px;
    margin-bottom: 8px;
    background: var(--neutral-100);
    height: 28px;
    border-radius: 28px;
    white-space: nowrap;
    padding: 0 12px;
    cursor: pointer;
    user-select: none;
}

.project-cts-blurb-pill:hover,
.project-cts-blurb-pill-active {
    background: var(--active-100);
}

.project-cts-blurb-pill svg {
    margin-right: 6px;
    fill: var(--blue-800);
}

.project-cts-blurb-bullets {
    padding: 0 0 0 24px;
    margin: 16px 0 24px;
    line-height: 24px;
}

.project-cts-blurb-action {
    font-weight: bold;
    display: inline-flex;
    cursor: pointer;
    line-height: 16px;
    color: var(--neutral-800);
    user-select: none;
}

* + .project-cts-blurb-action {
    margin-left: 24px;
}

.project-cts-blurb-action svg {
    display: inline-block;
    margin-left: 8px;
    fill: var(--active-700);
}

.project-prospect-marketing-section-header {
    font-size: 14px;
    font-weight: bold;
}

.project-add-prospects-button {
    color: var(--neutral-600);
    fill: var(--active-700);
    margin-right: 16px;
}

.project-add-prospects-button-text {
    vertical-align: middle;
    font-weight: bold;
}

.project-prospect-marketing-modal .project-prospect-marketing-section,
.project-export-prospect-marketing .project-prospect-marketing-section {
    background: var(--neutral-000);
    padding: 16px;
    border-radius: 8px;
    margin-bottom: 16px;
}

.project-prospect-marketing-modal .project-prospect-marketing-section + .button-row {
    margin-top: 32px;
}

.project-export-prospect-marketing .project-prospect-marketing-section {
    font-size: 12px;
}

.project-export-prospect-marketing .project-prospect-marketing-section-header {
    font-size: 16px;
}

.project-export-prospect-marketing a {
    display: block;
    margin-top: 24px;
    font-size: 14px;
}

.project-extension-info {
    border-radius: 8px;
    background: var(--purple-050);
    display: flex;
}

.project-extension-info-main {
    padding: 32px;
}

.project-extension-info-body {
    color: var(--alpha-700);
    line-height: 18px;
}

.project-extension-info-body ol {
    padding-left: 14px;
}

.project-extension-info-status {
    font-weight: bold;
    color: var(--purple-700);
    display: inline-flex;
    align-items: center;
}

.project-extension-info-status-icon {
    fill: var(--neutral-white);
    background: currentColor;
    border-radius: 50%;
    margin-right: 8px;
}

.project-extension-info-header {
    font-size: 20px;
    font-weight: bold;
    margin: 16px 0;
}

.project-extension-info-button {
    color: var(--purple-700);
    border: 2px solid currentColor;
    background: var(--neutral-white);
    padding: 12px 20px;
    display: inline-block;
    margin-top: 20px;
    font-weight: bold;
    border-radius: 99px;
}

.project-extension-info-img {
    flex-shrink: 0;
    margin-left: 32px;
    margin-right: 32px;
    align-self: flex-end;
}

.project-share-externally-toggle {
    margin: 24px 0 32px;
}

.project-share-company-form {
    margin: 24px 0;
}

.project-share-company-form p {
    color: var(--neutral-600);
}

.project-shared-with-banner {
    margin: 24px 0;
}

.project-shared-with-banner svg {
    fill: var(--neutral-white);
    background: var(--teal-500);
    border-radius: 50%;
    display: inline-block;
    margin-right: 8px;
    vertical-align: top;
}

.project-modal .button-row {
    margin-top: 24px;
}

.project-controls .expanding-search-input {
    color: var(--neutral-600);
}

.project-controls .expanding-search-input-icon {
    fill: var(--neutral-600);
}

.adhoc-profile-name-inputs {
    display: flex;
    gap: 16px;
    margin-bottom: 16px;
}

.adhoc-profile-name-inputs .floating-input-wrap {
    margin: 0;
    flex-grow: 1;
}

.adhoc-profile-text {
    color: var(--neutral-600);
    margin: 16px 0;
}

.adhoc-profile-sequence-head {
    font-size: 14px;
    margin-bottom: 4px;
    font-weight: bold;
}

.adhoc-profile-sequence-subhead {
    color: var(--neutral-600);
    margin: 0 0 16px;
}

.talent-network-graphs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-column-gap: 32px;
    grid-row-gap: 32px;
}

.talent-network-graph {
    padding: 8px;
    border: 1px solid var(--neutral-150);
    border-radius: 8px;
    margin-top: 8px;
}

.talent-network-stat-summary {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-column-gap: 24px;
    margin-bottom: 32px;
}

.talent-network-stat-item {
    border: 1px solid var(--neutral-150);
    padding: 26px;
    text-align: center;
    border-radius: 8px;
}

.talent-network-stat-value {
    font-size: 24px;
    line-height: 32px;
    margin-bottom: 8px;
}

.talent-network-stat-label {
    color: var(--neutral-600);
    max-width: 114px;
    margin: 0 auto;
}

.talent-network-search-result {
    position: relative;
    border: 1px solid var(--neutral-150);
    padding: 24px;
}

.talent-network-search-result-top {
    display: flex;
    margin-bottom: 16px;
    gap: 16px;
}

.talent-network-search-result-avatar {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    border-radius: 4px;
}

.talent-network-search-result .action-menu {
    position: absolute;
    top: 24px;
    right: 24px;
}

.talent-network-search-result:first-child {
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
}

.talent-network-search-result:last-child {
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
}

.talent-network-search-result:not(:last-child) {
    border-bottom: 0;
}

.talent-network-search-result-header-wrap {
    display: flex;
    gap: 4px;
    justify-content: center;
    flex-direction: column;
}

.talent-network-search-result-header {
    font-weight: bold;
    font-size: 20px;
    line-height: 24px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
}

.talent-network-search-result-header-email {
    color: var(--neutral-600);
    line-height: 16px;
    cursor: pointer;
}

.talent-network-search-result-header-first-email {
    word-break: break-all;
}

.talent-network-search-result-header-social {
    display: block;
}

.talent-network-search-result-header svg {
    fill: var(--neutral-200);
    display: block;
}

.talent-network-search-result-info-row {
    line-height: 18px;
    color: var(--neutral-600);
    margin-bottom: 8px;
}

.talent-network-search-result-info-item + .talent-network-search-result-info-item::before{
    content: '·';
    color: var(--neutral-600);
    margin: 0 8px;
}

.talent-network-search-result-info-row-small {
    font-size: 12px;
}

.talent-network-search-result-footer {
    margin-top: 24px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

.talent-network-search-result-owners {
    margin-right: auto;
}

.talent-network-search-results-connections .talent-network-search-result-owners {
    display: none;
}

.talent-network-tray-button {
    background: transparent;
    font-weight: bold;
    display: inline-flex;
    cursor: pointer;
    border: 1px solid var(--neutral-200);
    line-height: 16px;
    padding: 7px 16px;
    border-radius: 32px;
    color: inherit;
}

.talent-network-tray-button-subtext {
    color: var(--neutral-600);
    font-size: 12px;
    margin-left: 4px;
    position: relative;
    top: 1px;
}

.talent-network-tray-button svg {
    fill: var(--neutral-400);
    width: 16px;
    height: 16px;
    margin-left: 8px;
    margin-right: -4px;
}

.talent-network-tray-button-active {
    background: var(--neutral-100);
    border-color: var(--neutral-100);
}

.talent-network-search-result-job-preview-entry {
    cursor: pointer;
    display: flex;
    align-items: center;
    padding: 12px 24px;
}

.talent-network-search-result-tray {
    margin-top: 16px;
    border: 1px solid var(--neutral-150);
    border-radius: 8px;
}


.talent-network-search-result-tray-header {
    display: flex;
    align-items: center;
    padding: 16px 24px;
    border-bottom: 1px solid var(--neutral-150);
}

.talent-network-search-result-tray-subheader {
    padding: 0 24px;
    margin: 16px 0;
    color: var(--neutral-600);
}

.talent-network-interested-item {
    padding: 0 24px;
    margin: 8px 0;
    color: var(--neutral-600);
}

strong.talent-network-interested-item-detail {
    color: var(--neutral-800);
}

.talent-network-interested-item:last-child {
    margin-bottom: 12px;
}

.talent-network-interested-item-detail:not(:last-child)::after {
    content: '·';
    margin: 0 8px;
}

.talent-network-tray-header-close {
    margin-left: auto;
    cursor: pointer;
    fill: var(--neutral-200)
}

.talent-network-tray-header-primary-text {
    font-weight: bold;
}

.talent-network-tray-header-secondary-text {
    margin: 0 8px;
    color: var(--neutral-600);
}
.talent-network-tray-header-action {
    cursor: pointer;
}

.talent-network-job-preview-action {
    margin-left: auto;
    cursor: pointer;
}

.talent-network-job-preview-primary-text {
    font-weight: bold;
}

.talent-network-job-preview-primary-text + .talent-network-job-preview-secondary-text::before,
.talent-network-job-preview-secondary-text + .talent-network-job-preview-secondary-text::before {
    content: '·';
    color: var(--neutral-600);
    margin: 0 8px;
}

.talent-network-search-result-job-preview-entry:not(:last-child),
.talent-network-job:not(:last-child) {
    border-bottom: 1px solid var(--neutral-150);
}

.talent-network-job {
    padding: 16px 24px;
    position: relative;
}

.talent-network-job-title {
    font-size: 16px;
    color: var(--neutral-800);
    margin-bottom: 8px;
    font-weight: bold;
}

.talent-network-job-action {
    position: absolute;
    right: 24px;
    top: 12px;
}

.talent-network-job-skills {
    margin: 12px 0 8px;
}

.talent-network-job-skill {
    display: inline-block;
    font-size: 12px;
    height: 24px;
    line-height: 24px;
    padding: 0 8px;
    margin-right: 4px;
    margin-bottom: 4px;
    border-radius: 4px;
    background: var(--neutral-100)
}

.talent-network-search-result-skills {
    margin: 16px 0;
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
}

.talent-network-search-result-skills:last-child {
    margin-bottom: 0;
}

.talent-network-search-result-skill {
    padding: 0 8px;
    background: var(--neutral-100);
    border-radius: 4px;
    font-size: 12px;
    height: 24px;
    line-height: 24px;
}

.talent-network-activity-entry {
    display: flex;
    align-items: center;
    height: 24px;
    padding: 8px 24px;
}

.talent-network-activity-entry-avatar {
    height: 24px;
    width: 24px;
    border-radius: 50%;
    margin-right: 8px;
}

.talent-network-activity-entry-name {
    font-weight: bold;
    margin-right: 8px;
}

.talent-network-activity-entry-label {
    margin-right: 8px;
}

.talent-network-activity-entry-date {
    color: var(--neutral-600);
    margin-right: 8px;
}

.talent-network-search-preferences {
    padding: 12px 24px;
    color: var(--neutral-600);
}

.talent-network-search-preference:not(:last-child) {
    margin-bottom: 8px;
}

.talent-network-search-preference {
    display: flex;
}

.talent-network-search-preference-label {
    width: 160px;
    display: inline-block;
    margin-right: 8px;
    font-weight: bold;
    flex-shrink: 0;
}

.talent-network-search-preference-value {
    flex-grow: 1;
}

.talent-network-search-preference-value a {
    display: block;
}

.talent-network-search-result-booleans {
    margin-top: 24px;
    color: var(--neutral-600);
}

.talent-network-search-result-boolean svg {
    fill: var(--neutral-white);
    background: var(--red-700);
    border-radius: 50%;
    vertical-align: top;
    margin-right: 8px;
}

.talent-network-search-result-boolean-on svg {
    background: var(--green-500);
}

.talent-network-search-result-boolean + .talent-network-search-result-boolean {
    margin-left: 16px;
}

.talent-network-search-preferences-date {
    margin: 16px 0 12px;
    color: var(--neutral-600);
    font-size: 12px;
}

.board-invite-link-block:first-child {
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
}

.board-invite-link-block:last-child {
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
}

.board-invite-link-block + .board-invite-link-block {
    border-top: 0;
}

.board-invite-link-block {
    border: 1px solid var(--neutral-150);
    padding: 24px;
    position: relative;
}

.board-invite-link-block-detail {
    margin-bottom: 6px;
    display: flex;
}

.board-invite-link-block-detail-label {
    flex-shrink: 0;
    color: var(--neutral-600);
    width: 80px;
    display: inline-block;
}

.board-invite-link-block-header {
    font-size: 20px;
    line-height: 24px;
    font-weight: bold;
    margin-bottom: 16px;
}

.board-invite-link-block-detail-action {
    color: var(--blue-800);
    display: inline-block;
    margin-left: 8px;
    cursor: pointer;
}

.board-invite-link-block-delete {
    position: absolute;
    top: 24px;
    right: 24px;
    fill: var(--neutral-200);
    border: 0;
    background: none;
    padding: 0;
}

.board-created-link {
    padding: 16px;
    border-radius: 4px;
    border: 1px solid var(--neutral-200);
    margin: 16px 0;
}

.board-created-link-copy {
    display: inline-block;
    color: var(--blue-800);
    margin-right: 16px;
    margin-bottom: 8px;
    cursor: pointer;
}

.talent-empty {
    border-radius: 8px;
    margin: 16px 0;
    padding: 32px 32px 32px 172px;
    background-color: var(--neutral-000);
    background-image: url('/static/images/portrait-gray-confused-left.svg');
    background-position: 0 100%;
    background-repeat: no-repeat;
}

.talent-empty-header {
    font-weight: bold;
    margin-bottom: 4px;
    line-height: 20px;
}

.talent-empty p {
    margin: 0;
}

.talent-pool-matching-job {
    border: 1px solid var(--active-700);
    border-radius: 8px;
    margin-bottom: 24px
}

.talent-pool-matching-job-close {
    cursor: pointer;
    fill: var(--neutral-600);
}

.talent-pool-matching-job-header {
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    background: var(--active-050);
    display: flex;
    justify-content: space-between;
    padding: 16px 24px;
    font-weight: bold;
    font-size: 16px;
    line-height: 20px;
    align-items: center;
}

.talent-bulk-project-text {
    display: flex;
    gap: 8px;
}

.talent-bulk-project-icon {
    border-radius: 50%;
    background: var(--green-500);
    fill: var(--neutral-white);
    flex-shrink: 0;
}

.talent-bulk-project-icon-red {
    background: var(--red-700);
}

.talent-network-connections {
    padding: 20px 24px;
}

.talent-network-connection {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
    gap: 8px;
}

.talent-network-connection-date {
    color: var(--neutral-600);
}

.talent-network-connection:last-child {
    margin-bottom: 0;
}

.talent-network-connection-avatar {
    width: 24px;
    height: 24px;
    border-radius: 50%;
}

.talent-network-connection-name {
    font-weight: bold;
}

.talent-network-upload-wrap {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 16px 0;
}

.talent-network-upload-wrap svg {
    fill: var(--active-700);
}

.talent-network-upload-last-sync {
    color: var(--neutral-600);
}

.connections-search-extension-info {
    margin-top: 32px;
}

.talent-input-filters {
    position: relative;
}

.talent-network-prefix-search {
    position: absolute;
    top: 24px;
    right: 20px;
}

.talent-network-card-emails {
    padding: 12px 24px;
}

.talent-network-card-email-entry {
    font-weight: bold;
    color: var(--neutral-800);
    display: block;
    cursor: pointer;
}

.talent-network-card-email-entry {
    color: var(--blue-800);
}

.talent-network-card-email-entry:not(:last-child) {
    margin-bottom: 8px;
}

.talent-network-search-result-tray-footer {
    border-top: 1px solid var(--neutral-150);
    padding: 12px 24px;
}

.talent-network-crm-inactive {
    color: var(--red-700);
}

.talent-network-crm-inactive:after {
    display: inline-block;
    content: '·';
    margin: 0 8px;
    color: var(--neutral-600);
}

.talent-network-job-app {
    display: flex;
    padding: 15px 24px;
}

.talent-network-job-app:not(:last-child) {
    border-bottom: 1px solid var(--neutral-150);
}

.talent-network-job-app-detail {
    color: var(--neutral-600);
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.talent-network-job-app-detail:not(:first-child):before {
    content: '·';
    margin: 0 8px;
}

.portfolio-jobs-filters {
    border: 1px solid var(--neutral-150);
    border-radius: 8px;
    padding: 24px 16px 20px;
    margin-bottom: 24px;
}

.portfolio-jobs-filters .block-typeahead-wrap {
    margin-bottom: 0;
}

.portfolio-job-filter-input-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(0, 1fr));
    grid-gap: 8px
}

.portfolio-job-filter-input-row + .portfolio-job-filter-input-row {
    margin-top: 8px;
}

.portfolio-jobs-filter {
    position: relative;
}

.portfolio-jobs-filter .floating-input-wrap {
    text-align: left;
    width: 100%;
    background: var(--neutral-white);
}

.portfolio-jobs-filter-list-enum-options {
    background: var(--neutral-white);
    border: 1px solid var(--neutral-200);
    border-radius: 4px;
    position: absolute;
    top: calc(100% + 8px);
    z-index: 99;
    min-width: 100%;
    box-sizing: border-box;
    box-shadow:
        0 2px var(--alpha-50),
        0 2px 4px var(--alpha-50);
    padding: 8px 0;
}

.portfolio-jobs-filter .Select-control {
    display: block;
    height: 100%;
    line-height: inherit;
}

.portfolio-jobs-filter .Select-menu {
    top: calc(100% + 8px);
}

.portfolio-jobs-filter .typeahead {
    left: 0;
    right: 0;
    top: calc(100% + 8px);
}

.portfolio-jobs-filter-footer {
    margin-top: 20px;
    display: flex;
    align-items: center;
}

.portfolio-jobs-filter-footer:empty {
    margin: 0;
}

.portfolio-jobs-toggle {
    margin-right: 16px;
}

.portfolio-jobs-toggle .fancy-checkbox-text,
.portfolio-saved-search-checkbox .fancy-checkbox-text {
    font-weight: normal;
    color: var(--neutral-600);
}

.portfolio-jobs-total {
    color: var(--neutral-600);
    font-weight: bold;
    margin-right: 16px;
}

.portfolio-jobs-clear {
    cursor: pointer;
    color: var(--neutral-600);
    margin-right: 16px;
}

.portfolio-jobs-results,
.portfolio-saved-searches {
    border: 1px solid var(--neutral-150);
    border-radius: 8px;
}

.portfolio-jobs-results {
    margin: 24px 0;
}

.portfolio-jobs-result,
.portfolio-saved-search {
    border-bottom: 1px solid var(--neutral-150);
    padding: 24px;
}

.portfolio-jobs-publish-notice {
    padding: 8px 12px;
    border: 1px solid var(--teal-500);
    border-radius: 4px;
    margin-bottom: 16px;
}

.portfolio-jobs-publish-notice svg {
    margin-right: 8px;
    fill: var(--teal-500);
}

.portfolio-saved-search {
    position: relative;
}

.portfolio-saved-search-delete {
    cursor: pointer;
    position: absolute;
    top: 24px;
    right: 24px;
    fill: var(--neutral-400);
    border-radius: 50%;
}

.portfolio-saved-search-delete:hover {
    background: var(--neutral-000);
}

.portfolio-jobs-result:last-child,
.portfolio-saved-search:last-child {
    border-bottom: 0;
}

.portfolio-jobs-result {
    position: relative;
}

.portfolio-job-title,
.portfolio-saved-search-title {
    font-weight: bold;
    font-size: 20px;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
}

.portfolio-jobs-tags {
    margin: 16px 0;
}

.portfolio-job-title-tag {
    font-size: 12px;
    padding: 0 8px;
    display: inline-block;
    line-height: 26px;
    height: 26px;
    border: 1px solid var(--teal-200);
    border-radius: 4px;
    margin-right: 4px;
    font-weight: bold;
    /*
        this is a lazy hack to make civicJobTypes look nice, needs
        to be fixed to have proper labels if removing
    */
    text-transform: capitalize;
}

.portfolio-job-title-tag-red {
    border-color: var(--active-500);
}

.portfolio-job-company {
    font-size: 14px;
    font-weight: bold;
    line-height: 18px;
    margin: 16px 0;
}

.portfolio-job-info {
    color: var(--neutral-600);
    margin: 12px 0;
}

.portfolio-job-info-entry:not(:last-child)::after {
    content: '·';
    display: inline-block;
    margin: 0 8px;
}

.portfolio-job-skills {
    margin: 12px 0 8px;
}

.portfolio-job-skill {
    font-size: 12px;
    padding: 4px 8px;
    line-height: 16px;
    margin-right: 4px;
    margin-bottom: 4px;
    display: inline-block;
    border-radius: 4px;
    background: var(--neutral-100);
}

.portfolio-job-posted {
    font-size: 12px;
    color: var(--neutral-600);
}

.portfolio-job-footer:empty {
    display: none;
}

.portfolio-job-footer {
    margin-top: 24px;
    display: flex;
    gap: 8px;
}

.portfolio-job-talent-partners:not(:first-child) {
    margin-left: 8px;
}

.portfolio-job-talent-partner {
    display: inline-flex;
    margin-right: 16px;
    align-items: center;
}

.portfolio-job-talent-partner-avatar {
    height: 32px;
    width: 32px;
    border-radius: 50%;
    margin-right: 8px;
}

.portfolio-job-talent-partner-name {
    margin-bottom: 2px;
}

.portfolio-job-talent-partner-label {
    font-size: 12px;
    color: var(--neutral-600);
}

.portfolio-job-title {
    position: relative;
}

.portfolio-jobs-more {
    margin: 24px auto;
    display: block;
    padding: 0 48px;
}

.portfolio-jobs-empty {
    color: var(--neutral-600);
    font-style: italic;
    text-align: center;
    margin: 32px 0;
}


.portfolio-saved-search-footer {
    display: flex;
    align-items: center;
    margin-top: 32px;
    color: var(--neutral-600);
}

.portfolio-saved-search-notification-label {
    font-weight: bold;
    margin-right: 16px;
}

.portfolio-saved-search-checkbox {
    display: inline-flex;
    margin-right: 16px;
}

.portfolio-saved-search-total {
    margin-left: auto;
    font-weight: bold;
}

.portfolio-saved-search-params {
    margin: 16px 0;
}

.portfolio-saved-search-param {
    margin-bottom: 8px;
}

.portfolio-saved-search-param-label {
    display: inline-block;
    margin-right: 8px;
    color: var(--neutral-600);
}

.portfolio-jobs-toolbar {
    color: var(--neutral-600);
    line-height: 32px;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.portfolio-jobs-toolbar-item {
    color: inherit;
    font-weight: bold;
}

.portfolio-jobs-toolbar-item svg {
    fill: currentColor;
    vertical-align: top;
}

.portfolio-jobs-toolbar-item-primary svg {
    fill: var(--active-700);
}

.portfolio-saved-search-participants {
    display: flex;
    margin: 16px 0;
    align-items: center;
    height: 40px;
}

.portfolio-saved-search-owner {
    display: inline-flex;
    align-items: center;
}

.portfolio-saved-search-owner-avatar {
    height: 32px;
    width: 32px;
    border-radius: 50%;
    margin-right: 8px;
}

.portfolio-saved-search-owner-name {
    margin-bottom: 2px;
}

.portfolio-saved-search-owner-label {
    font-size: 12px;
    color: var(--neutral-600);
}

.portfolio-saved-search-subscribers {
    color: var(--neutral-white);
    pointer-events: none; /* disables animation */
    margin-left: 24px;
}

.portfolio-jobs-save-search-toggle {
    font-weight: normal;
    margin: 16px 0;
}

.portfolio-jobs-save-search-label {
    margin: 24px 0 16px;
}

.create-job-form-double-input-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-column-gap: 16px;
}

.create-job-form-double-input-row .floating-input-wrap {
    margin: 0;
}

.create-job-button-row {
    margin-top: 24px;
}

.create-job-form-input-row {
    margin: 16px 0;
}

.create-job-form-tip {
    line-height: 24px;
    margin: 16px 0;
}

.create-job-form-tip > * {
    vertical-align: middle;
}

.create-job-form-tip svg {
    fill: var(--green-500);
    margin-right: 8px;
}

.portfolio-jobs-no-discovered {
    border-radius: 8px;
    margin: 16px 0;
    padding: 32px 32px 32px 172px;
    background-color: var(--neutral-000);
    background-image: url('/static/images/portrait-gray-confused-left.svg');
    background-position: 0 100%;
    background-repeat: no-repeat;
}

.portfolio-jobs-no-discovered-header {
    font-weight: bold;
    margin-bottom: 4px;
    line-height: 20px;
}

.portfolio-jobs-no-discovered p {
    margin: 0;
}

.create-job-mode-option {
    padding: 16px;
    background: var(--neutral-000);
    border-radius: 8px;
    margin-bottom: 8px;
}

.create-job-mode-option .radio-label {
    font-weight: bold;
}

.create-job-mode-content {
    padding-left: 24px;
    margin-top: 12px;
}

.create-job-mode-explanation {
    font-size: 14px;
    color: var(--neutral-600);
}

.portoflio-jobs-filter-header {
    font-weight: bold;
    font-size: 20px;
    line-height: 24px;
    margin-bottom: 16px;
}

.start-sourcing-project-owner {
    margin-left: 16px;
}

.portfolio-jobs-filter-tabs {
    display: flex;
    border-bottom: 1px solid var(--neutral-150);
    margin: 16px 0;
}

.portfolio-jobs-filter-tab {
    background: none;
    color: var(--neutral-600);
    font-weight: bold;
    padding: 0 0 14px;
    border: none;
    margin-right: 32px;
}

.portfolio-jobs-filter-tab-active {
    color: var(--neutral-800);
    padding-bottom: 13px;
    border-bottom: 2px solid var(--active-700);
    margin-bottom: -1px;
}

.portfolio-job-filter-pills {
    display: flex;
    gap: 4px;
    flex-wrap: wrap;
}

.portfolio-job-filter-pill {
    display: inline-flex;
    background: var(--active-100);
    align-items: center;
    font-weight: bold;
    color: var(--neutral-600);
    gap: 4px;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
}

.portfolio-job-filter-pill-close {
    fill: var(--active-700);
    cursor: pointer;
    flex-shrink: 0;
}

.portfolio-jobs-filter-tab-searching::before {
    content: '';
    display: inline-block;
    background: var(--active-700);
    height: 8px;
    width: 8px;
    border-radius: 50%;
    margin-right: 8px;
    margin-bottom: 1px;
}

.portfolio-job-filter-pills-wrapper {
    display: flex;
    margin: 24px 0;
    justify-content: space-between;
}

.portfolio-job-filter-pills-misc {
    margin-left: 8px;
    flex-shrink: 0;
    /* this should be fixed, have a margin on clear button
     * that is annoying to remove right now */
    margin-right: -16px;
}

.portfolio-job-filter-pills:empty + .portfolio-job-filter-pills-misc {
    margin-left: 0;
    margin-right: auto;
}

.portfolio-job-filter-inputs-intro {
    color: var(--neutral-600);
    margin: 16px 0;
}

.portfolio-job-filters-title {
    font-weight: bold;
    font-size: 20px;
    margin-bottom: 16px;
}

.portfolio-jobs-suggested-filters {
    display: flex;
}

.portfolio-jobs-suggested-filters-wrap {
    margin: 20px 0;
}

.portfolio-jobs-suggested-filters-header {
    margin-bottom: 8px;
    color: var(--neutral-600);
}

.portfolio-jobs-suggested-filters {
    display: flex;
    gap: 4px;
}

.portfolio-jobs-suggested-filter {
    border: 1px solid var(--neutral-200);
    border-radius: 4px;
    background: none;
    display: inline-flex;
    gap: 4px;
    align-items: center;
    font-weight: bold;
    color: var(--neutral-600);
    padding: 7px 11px;
    align-items: center;
}

.portoflio-jobs-suggested-filter-total {
    font-weight: normal;
    font-size: 12px;
}

.portfolio-job-badges:not(:empty) {
    margin: 16px 0;
}

.portfolio-job-badge {
    border: 1px solid var(--teal-200);
    display: inline-block;
    font-size: 12px;
    border-radius: 4px;
    margin-right: 4px;
    padding: 0 8px;
    height: 24px;
    line-height: 24px;
    font-weight: bold;
}

.portfolio-job-badge-red {
    border-color: var(--active-500);
}

.portfolio-job-salary {
    color: var(--neutral-600);
    margin: 16px 0;
    display: flex;
    align-items: center;
}

svg.portfolio-job-salary-icon {
    overflow: visible;
    fill: var(--neutral-200);
    margin-right: 4px;
}

.publish-job-modal .react-datepicker-wrapper {
    width: 100%;
    margin-bottom: 24px;
}

@media (max-width: 600px) {
    .portfolio-job-filter-input-row {
        grid-template-columns: 1fr;
    }
}

.create-job-salary-modal {
    width: 536px;
}

.portfolio-job-applicants-button {
    display: inline-flex;
    align-items: center;
}

.portfolio-job-applicants-button svg {
    fill: var(--neutral-400);
    width: 16px;
    height: 16px;
    margin-left: 8px;
    margin-right: -4px;
}

.portfolio-job-applicants-button.portfolio-job-applicants-button-active {
    background: var(--neutral-100);
    border-color: var(--neutral-100);
}

.portfolio-companies {
    border: 1px solid var(--neutral-150);
    border-radius: 8px;
}

.portfolio-company {
    border-bottom: 1px solid var(--neutral-150);
    padding: 24px;
    position: relative;
}

.portfolio-company-actions {
    line-height: 1;
}

.portfolio-company-actions .Select-control-icon{
    display: block;
}

.portfolio-company:last-child {
    border-bottom: 0;
}

.portfolio-company-name {
    font-weight: bold;
    font-size: 20px;
    margin-right: auto;
}

.portfolio-company-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 16px 0;
}

.portfolio-company-badges:empty {
    display: none;
}

.portfolio-company-badge {
    border: 1px solid var(--teal-200);
    font-size: 12px;
    border-radius: 4px;
    padding: 0 8px;
    height: 24px;
    line-height: 24px;
    font-weight: bold;
    display: inline-block;
}

.portfolio-company-badge-red {
    border-color: var(--active-500);
}

.portfolio-company-name-interactive:hover {
    color: var(--blue-800);
    cursor: pointer;
}

.portfolio-company-info {
    color: var(--neutral-600);
    margin: 12px 0;
}

.portfolio-company-info-entry:not(:last-child)::after {
    content: '·';
    display: inline-block;
    margin: 0 8px;
}

.portfolio-companies-toolbar {
    color: var(--neutral-600);
    line-height: 32px;
    margin: 0 0 24px;
    display: flex;
    align-items: center;
}

.portfolio-companies-toolbar .expanding-search-input {
    margin-right: 12px;
}

.portfolio-companies-toolbar-item {
    color: inherit;
    font-weight: bold;
    margin-right: 12px;
    display: inline-flex;
    align-items: center;
}

.portfolio-companies-toolbar-item svg {
    fill: var(--active-700);
    display: inline-block;
    margin-right: 8px;
}

.portfolio-company-info-desc {
    margin: 16px 0;
    color: var(--neutral-600);
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    text-overflow: ellipsis;
    overflow: hidden;
}

.add-talent-partner-input {
    display: block;
    text-align: left;
    width: 100%
}

.add-talent-partner-wrap {
    position: relative;
}

.add-talent-partner-wrap .typeahead {
    width: 100%;
    top: calc(100% + 8px);
}

.current-talent-partners-list {
    border: 1px solid var(--neutral-150);
    margin: 16px 0 32px;
}

.current-talent-partners-item {
    display: flex;
    border-bottom: 1px solid var(--neutral-150);
    padding: 16px;
    align-items: center;
    justify-content: space-between;
}

.current-talent-partners-item:last-child {
    border-bottom: 0;
}

.current-talent-partners-delete {
    border-radius: 50%;
    fill: var(--neutral-200);
    cursor: pointer
}

.current-talent-partners-delete:hover {
    background: var(--alpha-50);
    fill: var(--neutral-750);
}

.new-company-input-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-column-gap: 16px;
    margin: 16px 0;
}

.new-company-input-row .floating-input-wrap {
    margin: 0;
}

.new-company-typeahead {
    min-width: 0;
    margin: 0;
}

.new-company-instructions-wrap {
    background: var(--neutral-100);
    border-radius: 8px;
    padding: 16px;
}

.new-company-instructions-header {
    font-weight: bold;
    margin-bottom: 16px;
}

.new-company-instructions-wrap .checkbox {
    margin: 16px 0;
    display: block;
}

.new-company-instructions-wrap textarea {
    border: 1px solid var(--neutral-200);
}

.new-company-instructions-wrap textarea::placeholder {
    color: var(--neutral-400);
}

.portfolio-company-status-item {
    margin-right: 32px;
}

.portfolio-company-status-item-label {
    margin-right: 8px;
}

.portfolio-company-status-item-value {
    font-weight: bold;
}

.edit-company-textarea-wrap {
    margin: 24px 0;
}

.edit-company-description {
    height: 96px;
}

.edit-company-static-field {
    margin: 16px 0;
}

.edit-company-static-field-label {
    color: var(--neutral-600);
    margin-right: 12px;
}

.edit-company-form-actions {
    margin-top: 24px;
}

.edit-company-toggle {
    margin-bottom: 16px;
}

.edit-company-toggle-desc {
    margin-left: 32px;
    color: var(--neutral-600);
    margin-top: -10px;
}

.edit-company-stealth-warning {
    border: 1px solid var(--red-700);
    padding: 12px;
    display: flex;
    margin: 16px 0;
    border-radius: 4px;
}

.edit-company-stealth-warning-icon {
    flex-shrink: 0;
    margin-right: 12px;
    fill: var(--red-700);
}

.remove-portfolio-company-job-count {
    margin-top: -12px;
}

.signup {
    box-sizing: border-box;
    font-size: 14px;
}

.signup *,
.signup *::before,
.signup *::after {
    box-sizing: inherit;
}

.signup-logo {
    display: block;
    margin: 54px auto 32px;
}

.signup-container {
    background: white;
    border-radius: 24px;
    max-width: 592px;
    margin: 32px auto;
    padding: 72px;
}

.signup-content-wrap {
    padding: 48px;
    height: 100%;
    display: flex;
}

.signup-heading {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 12px;
    text-align: center;
}

.signup-fancy-heading {
    font-size: 32px;
    text-align: center;
    font-weight: 900;
    margin-bottom: 48px;
    background: -webkit-linear-gradient(45deg, var(--red-700), var(--active-850), var(--active-700));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.signup-subheading {
    margin-bottom: 24px;
    text-align: center;
}

.signup-name-input {
    margin-bottom: 16px;
}

.signup-box {
    padding: 32px 24px;
    border: 1px solid var(--neutral-200);
    text-align: center;
    position: relative;
    border-radius: 8px;
    margin-top: 32px;
}

.signup-box + .signup-box {
    margin-top: 48px;
}

.signup-box-highlighted {
    border-width: 2px;
    border-color: var(--active-700);
}

.signup-box-dashed {
    border-width: 2px;
    border-style: dashed;
}

.signup-box-preheader {
    position: absolute;
    background: var(--neutral-white);
    font-size: 12px;
    top: 0;
    left: 50%;
    transform: translate(-50%, -60%);
    font-weight: bold;
    color: var(--neutral-600);
    white-space: nowrap;
    padding: 0 12px;
    margin: 0 auto;
}

.signup-box-header {
    font-weight: bold;
    margin-bottom: 16px;
}

.signup-box-description {
    margin: 0 0 16px;
    color: var(--neutral-600);
    font-size: 14px;
}

.signup-box-description-dark {
    color: var(--neutral-800);
}

.signup-box-description:last-child {
    margin-bottom: 0;
}

.loading .signup-firstname-input,
.loading .begin-button,
.loading .signup-lastname-input {
    pointer-events: none;
    filter: grayscale(100%);
}

.begin-button {
    margin: 24px 0 32px;
}

.tos-legal-content, .linkedin-url {
    font-size: 12px;
    color: var(--neutral-600);
}

.linkedin-url {
    margin-top: -10px;
}

.signup .cube-emitter {
    border-radius: 24px;
}

.signup-li-login {
    display: inline-flex;
    align-items: center;
    font-size: 14px;
    margin: 0 auto 24px;
}

.signup-footer {
    display: flex;
    justify-content: center;
    margin-top: 24px;
}

.signup-footer-link {
    margin: auto 16px;
}

.signup-footer-link:not(:hover) {
    color: var(--neutral-400);
}

.signup-faq a {
    line-height: 32px;
}

.signup-skip {
    flex-shrink: 0;
}

.signup-faq {
    font-size: 16px;
}

.signup-faq-active a {
    color: var(--neutral-750);
}

.signup-faq-item:first-child {
    margin-top: 12px;
}

.signup-faq-item:not(:last-child) {
    margin-bottom: 12px;
}

.signup-faq-q {
    cursor: pointer;
    font-weight: bold;
    margin: 24px 0;
}

.signup-faq-a {
    font-size: 14px;
    color: var(--neutral-600);
}

.signup-faq .signup-heading,
.signup-eu .signup-heading {
    text-align: left;
}

.signup-faq-back {
    border-top: 2px solid var(--neutral-150);
    padding-top: 12px;
    margin-top: 24px;
}

.signup-faq-back a {
    color: var(--blue-800);
    font-weight: bold;
    vertical-align: middle;
}

.signup-faq-back .icon {
    margin-left: -8px;
    transform: rotate(180deg);
}

.signup-next {
    text-align: center;
    margin-top: 24px;
}

.signup-input-close-group {
    display: flex;
    margin-bottom: 16px;
}

.signup-input-close-group .floating-input-wrap {
    width: 100%;
}

.close-button-holder {
    height: 56px;
    padding: 5px 5px 5px 17px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.signup-eu-subheading {
    margin: 24px 0 8px;
    font-weight: bold;
    font-size: 16px;
}

.signup-eu-intro {
    font-size: 14px;
}

.signup-eu p {
    font-size: 12px;
}

.signup-upload-disclaimer {
    text-align: left;
    font-size: 12px;
    color: var(--neutral-600);
    margin-top: 16px;
    line-height: 16px;
}

.signup-upload-disclaimer a {
    color: inherit;
}

.signup .login-email-wrap {
    width: 100%;
    margin: 24px 0;
}

.search-filters {
    display: flex;
    box-sizing: border-box;
    justify-content: center;
    align-items: flex-end;
    margin-top: 24px;

    /*
        to avoid shifting when adding a filter
        causes a height change
    */
    min-height: 76px;
}

.search-filters * {
    box-sizing: inherit;
}

.search-filter {
    margin: 0 12px;
    flex-shrink: 0;
    width: 48px;
    cursor: pointer;
    position: relative;
}

.search-filter-active {
    width: 56px;
}

.search-filter-outer-wrap,
.search-filter-outer-wrap * {
    border-radius: 50%;
}

.search-filter-outer-wrap {
    height: 48px;
    padding: 2px;
    border: 1px solid var(--neutral-400);
    color: var(--neutral-400);
    display: block;
}

.search-filter-active .search-filter-outer-wrap {
    height: 56px;
    border-color: var(--active-700);
    border-width: 2px;
    color: var(--neutral-750);
    font-weight: bold;
}

.search-filter-inner-wrap {
    width: 100%;
    height: 100%;
    background: var(--neutral-white);
    font-size: 12px;
    display: flex;
}

.search-filter-inner {
    margin: auto;
    max-height: 100%;
    max-width: 100%;
}

.search-filter-label {
    margin-top: 8px;
    text-overflow: ellipsis;
    width: 100%;
    overflow: hidden;
    text-align: center;
    font-size: 10px;
    white-space: nowrap;
}


.search-filter-active .search-filter-label {
    font-weight: bold;
}

.search-filter-subtext {
    position: absolute;
    height: 20px;
    min-width: 20px;
    text-align: center;
    line-height: 16px;
    padding: 0 4px;
    border-radius: 20px;
    border: 2px solid var(--neutral-150);
    top: 30px;
    left: 30px;
    font-size: 9px;
    font-weight: bold;
    color: white;
    background: var(--neutral-400);
}

.search-filter:hover .search-filter-subtext,
.search-filter-active .search-filter-subtext {
    background: var(--active-700);
    color: var(--neutral-900);
}

.search-filter-active .search-filter-subtext {
    top: 38px;
    left: 38px;
}

.search-filter-excess .search-filter-inner-wrap,
.search-filter-invite .search-filter-inner-wrap {
    background: none;
}

.search-filters .tooltip {
    max-width: 200px;
}

.search-filter-invite .tooltip {
    width: 200px;
}

.search-filter:not(:hover):not(.search-filter-active) .icon {
    fill: var(--neutral-400);
}

.search-filter-excess .popup-toggle-active .search-filter-outer-wrap,
.search-filter:hover .search-filter-outer-wrap {
    border-color: var(--active-700);
}

.search-filter-excess .popup-toggle-active .search-filter-inner,
.search-filter-excess:hover .search-filter-inner,
.search-filter-invite:hover .search-filter-inner {
    fill: var(--active-700);
}

.search-filter-excess .search-filter-inner {
    transform: rotate(90deg);
}

.search-filter-excess .popup-toggle {
    width: 100%;
}

.search-filter-excess .rip-container {
    border-bottom: 0;
}

.search-filter-excess .rip-input {
    width: 100%;
}

.search-filter-excess-typeahead {
    position: absolute;
    width: 360px;
    z-index: 2;
    top: 76px;
    right: 0;
    text-align: left;
}

.search-invite-prompt {
    display: flex;
    margin: 24px 0;
    align-items: center;
}

.search-invite-prompt-img,
.search-invite-prompt-cta {
    flex-shrink: 0;
}

.search-invite-prompt-img,
.search-invite-prompt-body {
    margin-right: 16px;
}

.search-invite-prompt-body {
    flex-grow: 1;
    font-weight: bold;
    font-size: 14px;
}

.search-filter-loved-company.search-filter-active .search-filter-outer-wrap,
.search-filter-loved-company.search-filter:hover .search-filter-outer-wrap {
    border-color: var(--red-700);
}

.search-filter-loved-company.search-filter:hover .search-filter-subtext,
.search-filter-loved-company.search-filter-active .search-filter-subtext {
    background: var(--red-700);
    color: var(--neutral-white);
}

.search-filter-connected-company.search-filter-active .search-filter-outer-wrap,
.search-filter-connected-company.search-filter:hover .search-filter-outer-wrap {
    border-color: var(--active-400);
}

.search-filter-connected-company.search-filter:hover .search-filter-subtext,
.search-filter-connected-company.search-filter-active .search-filter-subtext {
    background: var(--active-400);
}


.notification-settings {
    margin-top: 24px;
}

.notificaiton-setting {
    display: flex;
    background: var(--neutral-050);
    border-radius: 2px;
    margin-bottom: 2px;
    padding: 12px 20px;
}

.notification-setting-label {
    flex-grow: 1;
}

.notification-setting-input {
    flex-shrink: 0;
}

.notification-setting-all {
    margin-top: 24px;
}

.profile-settings {
    display: flex;
}

.profile-settings-main {
    flex-grow: 1;
    margin-right: 32px;
}

.profile-settings-form-editing .profile-settings-form-fields{
    border-radius: 4px;
    padding: 16px;
    border-color: var(--neutral-050);
    background: var(--neutral-050);
}

.profile-settings-form-edit {
    margin-left: 16px;
    font-weight: normal;
}

.profile-settings-form-controls {
    margin-top: 20px;
}

.profile-settings-form-controls .button {
    margin-right: 8px;
}

.profile-settings-form .floating-input-wrap:not(:last-child) {
    margin-bottom: 14px;
}

.profile-settings-fake-input:not(:last-child) {
    margin-bottom: 16px;
}

.profile-settings-cropping {
    pointer-events: none;
}

.profile-settings-crop .cropper-point {
    height: 5px;
    width: 5px;
    opacity: 1;
}

.profile-settings-crop .cropper-point,
.profile-settings-crop .cropper-line {
    background: var(--active-700);
}

.profile-settings-crop .cropper-view-box {
    outline-color: var(--active-700);
}

.profile-settings-crop .cropper-line {
    opacity: 0;
}

.profile-settings-crop-submit {
    margin-top: 24px;
    margin-right: 8px;
}

.profile-settings-fake-label {
    font-size: 12px;
    color: var(--neutral-600);
    margin-bottom: 4px;
}

.profile-settings-fake-value {
    font-weight: bold;
}

.profile-settings-fake-input-empty .profile-settings-fake-value {
    font-style: italic;
    color: var(--neutral-400);
    font-weight: normal;
}

.profile-settings-fake-input-empty .profile-settings-fake-label {
    color: var(--neutral-400);
}

.profile-settings-avatar-upload {
    width: 128px;
    flex-shrink: 0;
}

.profile-settings-avatar-wrap {
    overflow: hidden;
    border-radius: 4px;
    position: relative;
}

.profile-settings-avatar-overlay {
    display: none;
    cursor: pointer;
    font-size: 12px;
    background: var(--alpha-200);
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}

.profile-settings-avatar-upload-active .profile-settings-avatar-overlay {
    display: flex;
}

.profile-settings-avatar-wrap:hover .profile-settings-avatar-overlay {
    display: flex;
}

.profile-sttings-avatar-overlay-content {
    margin: auto;
    text-align: center;
    color: white;
}

.profile-settings-avatar-wrap img {
    height: 100%;
    width: 100%;
}

.profile-settings-avatar-error {
    margin-top: 8px;
    color: var(--red-700);
    display: none;
}

.profile-settings-avatar-error {
    margin-top: 8px;
    color: var(--red-700);
    display: none;
}

.profile-settings-avatar-upload-invalid .profile-settings-avatar-error {
    display: block;
}

.enable-sso-button {
    margin: 8px 0 32px 32px;
}

.profile-settings-workspace-select {
    display: block;
    margin-bottom: 24px;
}

.profile-settings-signed-in-as {
    font-size: 14px;
    color: var(--neutral-600);
}

.settings-extension-image {
    margin: 32px 0;
}

.settings-extension-button {
    margin: 32px 0;
}

.settings-extension-installed {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: bold;
    fill: var(--green-500);
    margin-bottom: 32px;
}

.settings-extension-wrap ul {
    color: var(--neutral-600);
    line-height: 24px;
}

svg.not-found {
    display: block;
    height: 150px;
    width: auto;
    margin: auto;
    overflow: visible;
}

.not-found .laptop {
    transform-origin: left bottom;
}

.not-found .closed {
    opacity: 0;
}

.not-found .eyes,
.not-found .eyebrows {
    animation: moveEyes 1.5s infinite alternate cubic-bezier(0.4, 0, 0.2, 1);
}

.not-found:hover .eyes,
.not-found:hover .eyebrows {
    animation: none;
}

.not-found:hover .laptop {
    animation: closeLaptop 0.25s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.not-found:hover .hand {
    animation: handDown 0.25s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.not-found:hover .hair-fg,
.not-found:hover .hair-bg,
.not-found:hover .head {
    animation: up 0.25s forwards cubic-bezier(0.4, 0, 0.2, 1);
}

.not-found:hover .mouth {
    animation: mouthUp 0.2s forwards cubic-bezier(0.4, 0, 0.2, 1);
}

.not-found:hover .open {
    animation: closeEyes 0.2s forwards cubic-bezier(0.4, 0, 0.2, 1);
}

.not-found:hover .closed {
    animation: openEyes 0.2s forwards cubic-bezier(0.4, 0, 0.2, 1);
}

.not-found:hover .closed,
.not-found:hover .open,
.not-found:hover .mouth,
.not-found:hover .hair-fg,
.not-found:hover .hair-bg {
    animation-delay: 0.195s;
}

.not-found:hover .head {
    animation-delay: 0.15s;
}

.not-found .faded-fill {
    opacity: 0;
}
.not-found .yellow-fill {
    fill: #f0eadd;
}
.not-found .red-fill {
    fill: #f1e4e2;
}
.not-found .gray-stroke {
    stroke: #b7b7b7;
}
.not-found .gray-fill {
    fill: #b7b7b7;
}
.not-found .light-gray-fill {
    fill: var(--neutral-050);
}

.not-found:hover .faded-fill {
    opacity: 0.3;
}

.not-found:hover .yellow-fill {
    fill: #f5c259;
}

.not-found:hover .red-fill {
    fill: var(--red-700);
}

.not-found:hover .gray-stroke {
    stroke: var(--neutral-750);
}

.not-found:hover .gray-fill {
    fill: var(--neutral-750);
}

.not-found:hover .light-gray-fill {
    fill: var(--neutral-150);
}

@keyframes closeLaptop {
    100% {
        transform: perspective(65px) rotateX(7deg);
    }
}
@keyframes handDown {
    100% {
        transform: translateY(11px);
    }
}
@keyframes up {
    100% {
        transform: translateY(-7.5px);
    }
}
@keyframes openEyes {
    100% {
        opacity: 1;
    }
}
@keyframes closeEyes {
    100% {
        opacity: 0;
    }
}
@keyframes mouthUp {
    100% {
        transform: translateY(-3.5px);
    }
}
@keyframes moveEyes {
    0% {
        transform: translateX(-5%);
    }
    20% {
        transform: translateX(-5%);
    }
    80% {
        transform: translateX(5%);
    }
    100% {
        transform: translateX(5%);
    }
}

.not-found-text {
    color: var(--neutral-400);
    margin: auto;
    margin-top: 20px;
    text-align: center;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.not-found-wrap {
    margin: 50px 0 40px;
    display: flex;
    flex-direction: column;
    position: relative;
}

.not-found-stage-2 {
    position: absolute;
    bottom: 0;
    width: 100%;
    opacity: 0;
    transform: translateY(10px);
}

.not-found-stage-1 {
    opacity: 1;
    transform: translateY(0);
}

.not-found:hover ~ .not-found-text {
    transition-delay: 0.195s;
}

.not-found:hover ~ .not-found-stage-2 {
    opacity: 1;
    transform: translateY(0);
}

.not-found:hover ~ .not-found-stage-1 {
    opacity: 0;
    transform: translateY(-10px);
}

.list-meta-fields, .list-meta-fields * {
    box-sizing: border-box;
}

.list-meta {
    position: relative;
    margin-bottom: 24px;
}

.list-meta-contributor {
    pointer-events: none;
}

.list-meta-contributor .list-meta-job-link,
.list-meta-contributor .list-meta-ats-link {
    pointer-events: all;
}

.list-meta-fields-row {
    display: flex;
    flex-wrap: wrap;
    margin-right: -8px;
}

.list-meta-field-wrap {
    flex-basis: calc(100%/3 - 8px);
    flex-grow: 1;
    flex-wrap: wrap;
    margin-right: 8px;
    margin-bottom: 8px;
    position: relative;
}

.list-meta-field {
    background: var(--neutral-050);
    border: 1px solid var(--neutral-050);
    text-align: left;
    width: 100%;
    border-radius: 4px;
    height: 56px;
    position: relative;
    overflow: hidden;
}

.list-meta-field-content {
    position: absolute;
    bottom: 8px;
    left: 12px;
    right: 12px;
}

.list-meta-field-content > * {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.list-meta-field-label {
    font-size: 12px;
    color: var(--neutral-600);
}

.list-meta-field-value {
    margin-top: 2px;
    font-size: 14px;
    color: var(--neutral-900);
    overflow: hidden;
    text-overflow: ellipsis;
}

.list-meta-checkboxes {
    margin-top: 5px;
    font-size: 14px;
    color: var(--neutral-900);
}


.list-meta-field-content .list-meta-checkboxes {
    overflow: visible;
}

.list-meta-checkboxes .checkbox-label {
    vertical-align: bottom;
}

.list-meta-field.popup-toggle-active {
    background: var(--neutral-white);
    border-color: var(--neutral-200);
}

.list-meta-field-wrap .typeahead {
    width: 100%;
    top: calc(100% + 8px);
}

.list-meta-select {
    overflow: visible;
}

.list-meta-select .Select-control {
    line-height: normal;
}

.list-meta-select .Select-menu {
    top: calc(100% + 12px);
    z-index: 99;
}

.list-meta-header-wrap {
    display: flex;
    margin-bottom: 16px;
}

.list-meta-title {
    font-weight: bold;
    font-size: 18px;
    flex-grow: 1;
}

.list-meta-job-link:hover .list-meta-job-link-toggle {
    opacity: 1;
}

.list-meta-job-link, .list-meta-ats-link {
    flex-shrink: 0;
    font-size: 14px;
    cursor: pointer;
    height: 32px;
    line-height: 32px;
}

.list-meta-job-link + .list-meta-ats-link {
    margin-left: 12px;
}

.list-meta-job-link-toggle {
    margin-right: 8px;
    opacity: 0;
    border-radius: 50%;
    background: var(--neutral-100);
}

.list-meta-job-link-tray,
.list-meta-list-enum-options {
    background: var(--neutral-white);
    border: 1px solid var(--neutral-200);
    border-radius: 6px;
    position: absolute;
    z-index: 99;
    min-width: 100%;
    box-shadow:
        0 2px var(--alpha-50),
        0 2px 4px var(--alpha-50);
}

.list-meta-job-link-tray {
    padding: 16px;
    top: 40px;
}

.list-meta-contributor .checkbox-square {
    border-color: var(--neutral-200);
}

.list-meta-contributor .checkbox-input:checked + .checkbox-label > .checkbox-square {
    border-color: var(--neutral-200);
}

.list-meta-list-enum-options {
    padding: 16px;
    margin-top: 8px;
}

.list-meta-list-enum-options > .checkbox {
    display: block;
    margin-bottom: 4px;
}

.list-meta-list-enum-options > .checkbox:last-child {
    margin: 0;
}


.analytics-block-title {
    margin: 32px 0 24px;
    font-weight: bold;
    font-size: 18px;
}

.analytics-content-title-wrap {
    display: flex;
    align-items: center;
}

.analytics-content-title-wrap > * {
    /* once export button isn't hidden in a weird way on base
     * we can move this margin to the title wrap
     */
    margin-bottom: 16px;
}

.analytics-content-title {
    font-weight: bold;
    font-size: 16px;
}

.analytics-content-export {
    display: inline-flex;
    align-items: center;
    padding: 0;
    background: none;
    border: none;
    color: var(--neutral-400);
    /* only shipping for internal for now, this is an easy bandaid */
    display: inline-flex;
}

.analytics-content-export:not(:first-child) {
    margin-left: 16px;
}

.analytics-content-export:hover {
    color: var(--neutral-600);
}

.analytics-content-export-icon {
    margin-right: 4px;
    fill: currentColor;
}

.analytics-index-pills {
    margin: 24px 0 32px;
}

.analytics-index-pill {
    background: none;
    border: 1px solid var(--neutral-150);
    height: 32px;
    padding: 0 16px;
    border-radius: 4px;
    margin-right: 4px;
}

.analytics-index-pill-active {
    border: 2px solid var(--active-700);
    padding: 0 15px;
}

.analytics-content-subtitle {
    font-size: 14px;
    font-weight: normal;
    color: var(--neutral-600);
}

.analytics-count-block {
    border: 1px solid var(--neutral-150);
    border-radius: 8px;
    padding: 16px 24px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin-bottom: 24px;
    gap: 8px;
    flex-wrap: wrap;
}

.analytics-count-item {
    margin: 8px 0;
    text-align: center;
}

.analytics-count-value {
    font-size: 20px;
    margin-bottom: 12px;
}

.analytics-count-label {
    font-size: 12px;
    color: var(--neutral-600);
}

.analytics-table-block {
    margin-bottom: 32px;
}

.analytics-table-block-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 32px;
}

.analytics-table-block {
    flex-basis: calc(100% / 3 - 16px);
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    overflow: auto;
}

.analytics-table-wrap {
    max-height: 330px;
    overflow: auto;
    border: 1px solid var(--neutral-200);
    border-radius: 4px;
    flex-grow: 1;
}

.analytics-timestamp-absolute {
    display: none;
}

.internal-workspace-analytics .analytics-timestamp-relative {
    display: none;
}

.internal-workspace-analytics .analytics-timestamp-absolute {
    display: block;
}

.internal-workspace-analytics {
    padding: 16px;
}

.analytics-table {
    border: 0;
}

.analytics-table .table-header-row {
    background: var(--neutral-white);
    position: sticky;
    top: 0;
}

.analytics-graph-block-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 16px;
}

.analytics-graph-block {
    flex-basis: 100%;
    flex-grow: 1;
}

.analytics-timestamp {
    color: var(--neutral-600);
    font-size: 12px;
    margin: 12px 0;
}

.analytics-company-select-wrap {
    max-width: 50%;
    margin: 24px 0;
}

.analytics-cname-selector {
    margin-bottom: 24px;
    display: inline-block;
}

.start-new-project {
    padding: 32px;
    width: 600px;
    border-radius: 6px;
    background: var(--neutral-white);
    border: 1px solid var(--neutral-200);
    box-shadow:
        0 2px var(--alpha-50),
        0 2px 4px var(--alpha-50);
    z-index: 2;
}

.start-new-project h2 {
    font-weight: bold;
    font-size: 16px;
    margin-bottom: 15px;
}

.list-of-lists-header-wrap {
    background: var(--teal-500);
}

.list-of-lists-header {
    color: var(--neutral-white);
    font-weight: bold;
    flex-grow: 1;
}

.list-of-lists {
    padding: 0;
    margin: 0 0 20px 0;
    list-style-type: none;
}

.projects-filters {
    background: var(--neutral-100);
    margin-bottom: 32px;
}

.projects-filters > .container,
.list-of-lists-header-wrap > .container {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    padding: 24px;
}

.list-of-lists-header-wrap > .container {
    padding: 24px;
}

.projects-filters > .container {
    padding: 20px 24px;
}

.projects-filter-select {
    margin-left: 8px;
}

.projects-filter-search {
    margin-right: auto;
    width: 240px;
}

.projects-table {
    background: var(--neutral-white);
    border: 0;
    border-radius: 0;
}

.projects-table .table-data-row td {
    background: transparent;
}

.projects-table .table-data-row:hover td {
    background: var(--neutral-050);
    border-radius: 2px;
}

.projects-table .table-data-row {
    cursor: pointer;
}

.project-details-header {
    padding-left: 0;
}

.project-star-header {
    width: 32px;
    padding: 0;
}

.project-tags-header {
    width: 240px;
}

.project-details-cell {
    max-width: 240px;
    white-space: nowrap;
    /* gross, need to refactor to access parent padding */
    margin-left: -16px;
}

.project-details-cell-title {
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 4px;
}

.project-details-cell-title .tooltip,
.project-tags-cell .tooltip {
    max-width: 200px;
    white-space: normal;
}

.project-details-cell-title .tooltip-arrow {
    /*
        fighting inline style unfortunately,
        likely a better way to handle this but
        need a quick fix for a demo ¯\_(ツ)_/¯
    */

    left: 32px!important;
}

.projects-table .table-header-content {
    color: var(--neutral-600);
    white-space: nowrap;
}

.project-tags-cell {
    margin-bottom: -4px;
}

.project-tags-tag {
    display: inline-block;
    white-space: nowrap;
    font-size: 12px;
    color: var(--neutral-600);
    background: var(--neutral-050);
    border-radius: 2px;
    margin-right: 4px;
    margin-bottom: 4px;
    padding: 4px 8px;
}

.list-of-lists-empty-container {
    margin: 32px auto;
}

.list-of-lists-empty-container .project-cts-blurb {
    background-color: var(--neutral-white);
}

.user-activity-wrap {
    background: var(--neutral-white);
}

.user-activity-graphs,
.user-onboarding-graphs {
    display: flex;
}

.user-onboarding-graphs {
    justify-content: space-around;
    margin: 48px 0;
}

.user-activity-graph-select {
    margin: 24px 0;
    width: auto;
}

.user-activity-graph-select .Select-menu {
    min-width: 0;
    right: auto;
}

.user-activity-graph {
    flex-basis: 50%;
    margin-right: 24px;
    margin-bottom: 24px;
}

.user-activity-graph-wrap {
    border: 1px solid var(--neutral-150);
    border-radius: 4px;
    padding: 8px;
}

.user-onboarding-graph {
    flex-basis: 160px;
    position: relative;
}

.user-onboarding-graph-wrap {
    position: relative;
    margin-bottom: 32px;
}

.user-activity-graph-label {
    margin-bottom: 12px;
}

.user-onboarding-graph-numbers {
    text-align: center;
    position: absolute;
    width: 100%;
    top: 50%;
}

.user-onboarding-graph-percent {
    font-size: 28px;
    font-weight: 300;
    text-indent: 4px; /* visual alignment */
}

.user-onboarding-graph-label {
    text-align: center;
}

.user-activity-graph:last-child {
    margin-right: 0;
}

.rv-xy-plot__axis__tick__text {
    fill: var(--neutral-600);
    font-size: 10px;
}

.rv-xy-plot__grid-lines__line {
    stroke-dasharray: 3, 6
}

.rv-xy-plot {
    color: var(--neutral-600);
}

.rv-hint {
    border: 1px solid var(--neutral-200);
    padding: 2px 4px;
    margin: 8px 0;
    background: var(--neutral-white);
    border-radius: 2px;
    font-size: 10px;
    color: var(--neutral-600);
    font-weight: bold;
}

.hint-header {
    color: var(--neutral-400);
    font-weight: normal;
}

.user-onboarding-controls {
    display: flex;
    justify-content: space-between;
    margin-bottom: 32px;
    align-items: flex-end;
}

.user-onboarding-controls .Select-boxy {
    margin-right: 8px;
}

.user-activity-icon-header {
    position: relative;
}

.user-activity-name {
    font-weight: bold;
}

.user-activity-title {
    font-weight: normal;
    margin-top: 4px;
    font-size: 12px;
}

.list-share-prompt {
    margin: auto 8px;
    font-size: 14px;
}

.list-share-avatars {
    color: white;
}

.list-share-avatars .avatar-row-header,
.list-share-avatars .avatar-row-excess,
.list-share-prompt {
    color: var(--teal-500);
}

.list-share-avatars .avatar-row-header {
    border-color: var(--neutral-white);
}

.list-share-top-tray {
    padding: 32px;
    position: relative;
}

.list-share-close {
    position: absolute;
    padding: 0;
    border: 0;
    outline: none;
    background: none;
    top: 16px;
    right: 16px;
}

.list-share-members-header {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 8px;
}

.list-share-members-description {
    margin-bottom: 24px;
}

.list-share-tray-toggle.popup-toggle-active {
    display: none;
}

.list-share-toggle-icon-wrap {
    height: 28px;
    width: 28px;
    line-height: 28px;
    border: 2px solid var(--active-700);
    border-radius: 50%;
    vertical-align: middle;
    display: inline-flex;
}

.list-share-toggle-icon-wrap .icon {
    margin: auto;
}

.list-share-bottom-tray {
    padding: 24px 32px 32px;
    background: var(--neutral-050);
    border-radius: 0 0 5px 5px;
}

.list-share-controls-header {
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 16px;
}

.list-share-controls {
    display: flex;
    align-items: flex-end;
}

.list-share-controls .typeahead {
    flex: 1;
    margin-right: 8px;
}

.list-share-participants:not(:last-child) {
    margin-bottom: 24px;
}

.list-share-participants .user-pill {
    margin-bottom: 8px;
    margin-right: 8px;
}

.list-header-share {
    display: flex;
    align-items: center;
}

.list-header-share * {
    text-align: left;
}

.list-header-share > .popup-toggle {
    display: inline-flex;
}

.list-share-participants .list-share-owner .user-pill {
    border: 2px solid var(--neutral-150);
    padding: 0;
    background: var(--neutral-white);
    color: var(--neutral-750);
}

.list-share-participants .list-share-owner .user-pill-subtext {
    color: inherit;
}

.list-empty-custom {
    padding: 0 24px;
    margin-top: 32px;
    background: var(--neutral-000);
    border-radius: 5px;
    display: flex;
    padding-right: 120px;
}

svg.list-empty-custom-image-clip {
    height: 100%;
    width: auto;
    flex-shrink: 0;
    overflow: visible;
    margin-right: 80px;
}

.list-empty-custom-text {
    margin: auto 0;
}

.list-empty-custom-header {
    font-size: 24px;
    font-weight: bold;
    color: var(--neutral-800);
    margin-bottom: 16px;
}

.list-empty-custom-body {
    font-size: 14px;
    line-height: 18px;
    color: var(--neutral-600);
}

.list-empty-generated {
    padding: 32px;
    margin-top: 32px;
    text-align: center;
}

.list-empty-header {
    font-size: 20px;
    margin-bottom: 8px;
}

.list-empty-subhead {
    color: var(--neutral-600);
    font-size: 14px;
}

.list-empty-image {
    margin: 0 auto 24px;
    display: block;
}

.list-empty-actions {
    display: flex;
    margin-top: 24px;
}

.list-empty-button {
    display: inline-flex;
    box-sizing: border-box;
    background: none;
    color: var(--neutral-600);
    border: 1px solid var(--neutral-200);
    border-radius: 4px;
    min-height: 64px;
    align-items: center;
    width: 40%;
    margin-right: 16px;
    padding: 8px 16px;
    text-align: left;
}

.list-empty-button:hover {
    border-color: var(--active-700);
    border-width: 2px;
    padding: 7px 15px;
}

.list-empty-text-wrap {
    position: relative;
}

.list-empty-button-text {
    font-size: 16px;
    font-weight: bold;
}

.list-empty-button:hover {
    color: var(--neutral-750);
}

.list-empty-button-icon {
    margin-right: 8px;
    flex-shrink: 0;
    height: 48px;
    width: 48px;
}

.list-empty-hidden-text {
    display: none;
    font-size: 12px;
    will-change: transform, opacity;
}

.list-empty-button:hover .list-empty-hidden-text {
    animation: translate-opacity-reset 0.15s cubic-bezier(0.4, 0, 0, 1.15) forwards;
    transform: translateY(100%);
    opacity: 0;
    display: block;
}


.project-export-options {
    margin: 24px 0;
}

.project-export-option {
    background: var(--neutral-050);
    padding: 16px;
    display: flex;
    margin-bottom: 8px;
    border-radius: 4px;
}

.project-export-option-contents {
    flex-grow: 1;
    position:relative;
}

.project-export-option-header {
    line-height: 32px;
    font-weight: bold;
}

label.project-export-option-header {
    cursor: pointer;
}

.project-export-radio {
    height: 32px;
    width: 32px;
    padding: 8px;
    margin-right: 8px;
    flex-shrink: 0;
    cursor: pointer;
}

.project-export-radio input {
    opacity: 0;
    position: absolute;
    width: 0;
    height: 0;
    pointer-events: none;
}

.project-export-radio-fake {
    height: 100%;
    width: 100%;
    border: 2px solid var(--neutral-050);
    box-shadow: 0 0 0 2px var(--neutral-200);
    border-radius: 50%;
}

input:checked + .project-export-radio-fake {
    background: var(--active-700);
    box-shadow: 0 0 0 2px var(--active-700);
}

.ats-job-toggle {
    width: 100%;
    display: flex;
    border-bottom: 2px solid var(--active-700);
    align-items: center;
    overflow: hidden;
    text-align: left;
}

.ats-job-toggle-text {
    flex-grow: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.ats-job-icon {
    flex-shrink: 0;
}

.ats-typeahead-wrap {
    position: relative;
}

.ats-typeahead {
    width: 100%;
    top: calc(100% + 8px);
    box-sizing: border-box;
}

.ats-typeahead .typeahead-suggestion {
    padding: 0 20px 0 40px;
}

.ats-typeahead .typeahead-suggestion-highlighted {
    padding-left: 39px;
}

.ats-default-suggestion {
    font-weight: bold;
    position: relative;
}

.ats-default-suggestion::before {
    content: '';
    position: absolute;
    background: var(--active-700);
    height: 8px;
    width: 8px;
    border-radius: 50%;
    left: -20px;
    top: 50%;
    transform: translateY(-50%);
}

.connect-box {
	border: 1px solid var(--neutral-200);
	box-sizing: border-box;
	border-radius: 8px;
	padding: 24px;
	margin:  24px 0;
}

.connect-box h3 {
	color: #1967D2;
}

.connect-box .floating-input-wrap {
    width: 220px;
    display: inline-block;
    margin-right: 18px;
    margin-top: 0;
}

.gmail-list {
	border: 1px solid var(--neutral-200);
	box-sizing: border-box;
	border-radius: 8px;
	font-size: 14px;
	color: var(--neutral-600);
}

.gmail-list table {
	width: 100%;
}


.gmail-list td {
    padding: 11px;
	padding-left: 18px;
}

.gmail-list th {
    padding: 17px;
    padding-left: 18px;
    font-weight: normal;
    text-align: left;
    font-size: 14px;
}

.gmail-list tbody tr:first-child td, tbody tr:first-child th {
    padding-left: 12px 5px 12px 18px;
}

.gmail-list strong {
    color: var(--neutral-800);
}

.gmail-list tr {
	border-bottom: 1px solid var(--neutral-200);
}

.gmail-list tbody tr:last-child {
	border-bottom: none;
}

.gmail-estimate-rate {
    color: var(--neutral-600);
    font-size: 14px;
}

.gmail-list .short {
    width: 100px;
}

.gmail-list tr.disconnected strong {
	color: var(--red-700);
}

.gmail-list td.gmail-status {
    white-space: nowrap;
}

.gmail-list td.gmail-status span {
    display: inline-flex;
    align-items: center;
}

.gmail-edit-line {
    display: flex;
    margin-bottom: 16px;
}

.gmail-edit-line > .floating-input-wrap {
    margin-right: 8px;
    width: 100%;
    margin-top: 0;
}

.edit-gmail-account h3 {
    font-size: 16px;
    font-weight: bold;
    margin-top: 24px;
}

.edit-gmail-account h4 {
    font-size: 14px;
    font-weight: bold;
    margin-top: 24px;
}

.edit-gmail-account h4 svg {
    fill: var(--active-700);
    margin-right: 5px;
    margin-top: -4px;
}

.gmail-warning-body {
    color: var(--neutral-600);
    margin-bottom: 32px;
}

.route-index {
    padding: 24px;
    color: var(--text);
}

.route-index__title {
    color: var(--text);
    margin-bottom: 8px;
}

.route-index__hint {
    color: var(--text-light);
    margin-bottom: 16px;
}

.route-index__hint code {
    background: var(--alpha-50);
    border-radius: var(--border-small);
    padding: 2px 6px;
}

.route-index__tree {
    list-style: none;
    padding: 0;
    margin: 0;
    border: 1px solid var(--neutral-100);
    border-radius: var(--border-md);
    background: var(--neutral-000);
    overflow: hidden;
}

.route-index__row {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    border-left: 2px solid transparent;
}

.route-index__row + .route-index__row {
    border-top: 1px solid var(--alpha-50);
}

.route-index__row:hover {
    background: var(--alpha-50);
    border-left-color: var(--primary);
}

.route-index__row--redirect {
    color: var(--text-light);
}

.route-index__row--group {
    color: var(--text-light);
    font-style: italic;
}

.route-index__link {
    color: var(--link);
    text-decoration: none;
    font-weight: 500;
}

.route-index__link:hover {
    text-decoration: underline;
}

.route-index__segment {
    font-family: monospace;
}

.route-index__path {
    margin-left: auto;
    color: var(--text-light);
    font-family: monospace;
    font-size: 12px;
}

.route-index__tag {
    display: inline-block;
    font-size: 11px;
    text-transform: uppercase;
    padding: 1px 6px;
    border-radius: var(--border-small);
    background: var(--alpha-50);
    color: var(--text-light);
}

.route-index__row--param {
    color: var(--text-light);
}

.route-index__access-via {
    font-size: 12px;
    font-style: italic;
    color: var(--text-light);
}

.active-saved-search {
    border: 1px solid var(--neutral-400);
    border-radius: 8px;
    padding: 20px;
}

.active-saved-search-header-wrap {
    padding-bottom: 16px;
    margin-bottom: 16px;
    border-bottom: 1px solid var(--neutral-400);
    position: relative;
}

.active-saved-search-close {
    position: absolute;
    top: 0;
    right: 0;
}

.active-saved-search-preheader {
    font-size: 14px;
    color: var(--neutral-600);
    font-weight: bold;
    margin-bottom: 4px;
}

.active-saved-search-header {
    color: var(--neutral-800);
    font-size: 20px;
    font-weight: bold;
    max-width: 75%;
}

.active-saved-search-header svg {
    fill: currentColor
}

.active-search-field {
    margin-bottom: 8px;
}

.active-search-field-inline {
    display: inline-block;
    margin-right: 24px;
}

.active-search-field-label {
    color: var(--neutral-600);
    margin-right: 8px;
}

.active-search-fields {
    margin-bottom: 12px;
}

.active-search-total {
    font-weight: bold;
    color: var(--neutral-600);
}

.invite-colleagues-chunk {
    margin-bottom: 64px;
}

.invite-colleagues-control-wrap {
    margin-bottom: 24px;
}

.invite-colleagues-message-label {
    font-size: 12px;
    color: var(--neutral-600);
    display: block;
    margin-bottom: 6px;
}

.invite-colleagues-preview {
    width: 100%;
    border: 1px solid var(--neutral-200);
    height: 400px;
    border-radius: 4px;
    margin-bottom: 24px;
}

.invite-url-and-desc {
    border: 1px solid var(--neutral-200);
    padding: 12px;
    border-radius: 4px;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 16px;
    margin-top: 24px;
}

.invite-desc {
    margin-bottom: 16px;
}

.invite-copy-button {
    color: var(--blue-800);
    cursor: pointer;
}

.faq-section {
    padding-right: 64px;
    margin-bottom: 64px;
}

.faq-section-head {
    text-transform: uppercase;
    font-size: 16px;
    padding: 16px 0 24px;
    margin-bottom: 24px;
    border-bottom: 1px solid var(--neutral-200);
    font-weight: bold;
}

.faq {
    margin-bottom: 32px;
}

.faq-question {
    font-weight: bold;
    font-size: 16px;
    margin-bottom: 8px;
}

.project-star {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    cursor: pointer;
}

.project-star:hover {
    background: rgba(0,0,0,.05);
    box-shadow: 0 0 0 2px rgba(0,0,0,.05);
}

.project-star.spinning-icon {
    pointer-events: none;
}

.start-sourcing-pariticpant-list {
    border: 1px solid var(--neutral-150);
    border-radius: 4px;
    margin: 24px 0;
}

.start-sourcing-pariticpant-list:empty {
    border-width: 0;
}

.list-toggler:not(.button) {
    padding: 0;
    border: 0;
    background: none;
    outline: none;
    display: inline-block;
    text-align: left;
}


.template-body {
    width: 100%;
    min-height: 300px;
}

.template-settings {
    display: flex;
}



