@charset "UTF-8";
/* prettier-ignore */
/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  border: 0;
  font: inherit;
  font-size: 100%;
  margin: 0;
  padding: 0;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote::before,
blockquote::after,
q::before,
q::after {
  content: "";
  content: none;
}

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

/* Custom additions */
html {
  box-sizing: border-box;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

.unstyled-button {
  /* Corrects inability to style clickable `input` types in iOS */
  -webkit-appearance: none;
  background: transparent;
  border: none;
  /* Inherit font & color from ancestor */
  color: inherit;
  cursor: pointer;
  font: inherit;
  /* Corrects font smoothing for webkit */
  -webkit-font-smoothing: inherit;
  -moz-osx-font-smoothing: inherit;
  /* Normalize `line-height`. Cannot be changed from `normal` in Firefox 4+. */
  line-height: normal;
  margin: 0;
  outline: none;
  overflow: visible;
  padding: 0;
  text-align: left;
  width: auto;
}

/* Font Sizes */
/* Maximum break-point for: IPhone 6, IPhone 6+, HTC One */
/* Maximum break-point for: IPad, IPad Mini  */
/* Maximum break-point for: Standard Laptop Size, IPad Pro */
/* Logo Font */
/* Maximum break-point for: IPhone 6, IPhone 6+, HTC One */
/* Maximum break-point for: IPad, IPad Mini  */
/* Maximum break-point for: Standard Laptop Size, IPad Pro */
/*
  Allows accessing value for a given key that
  belongs to a deeply nested map.

  Example:

  $map: (
    lorem: (
      ipsum: 666,
      dolor: (
        sit: 777,
      ),
    ),
  );

  map-deep-get($map, lorem, ipsum) returns '666'
  map-deep-get($map, lorem, dolor, sit) returns '777'
*/
/*
 * Adds ellipsis to text that is longer that the container it's placed in
 * Note: we're getting rid of placeholders, so in the process of transition we're aliasing
 * the placeholder as this mixin.
 */
.u-push-top--tenth {
  margin-top: 1px !important;
}

.u-push-top--fifth {
  margin-top: 2px !important;
}

.u-push-top--half {
  margin-top: 5px !important;
}

.u-push-top {
  margin-top: 10px !important;
}

.u-push-top--one-and-half {
  margin-top: 15px !important;
}

.u-push-top--double {
  margin-top: 20px !important;
}

.u-push-top--double-and-half {
  margin-top: 25px !important;
}

.u-push-top--triple {
  margin-top: 30px !important;
}

.u-push-top--none {
  margin-top: 0 !important;
}

.u-push-top--auto {
  margin-top: auto;
}

.u-push-bottom--tenth {
  margin-bottom: 1px !important;
}

.u-push-bottom--fifth {
  margin-bottom: 2px !important;
}

.u-push-bottom--half {
  margin-bottom: 5px !important;
}

.u-push-bottom {
  margin-bottom: 10px !important;
}

.u-push-bottom--one-and-half {
  margin-bottom: 15px !important;
}

.u-push-bottom--double {
  margin-bottom: 20px !important;
}

.u-push-bottom--double-and-half {
  margin-bottom: 25px !important;
}

.u-push-bottom--triple {
  margin-bottom: 30px !important;
}

.u-push-bottom--none {
  margin-bottom: 0 !important;
}

.u-push-bottom--auto {
  margin-bottom: auto;
}

.u-push-right--tenth {
  margin-right: 1px !important;
}

.u-push-right--fifth {
  margin-right: 2px !important;
}

.u-push-right--half {
  margin-right: 5px !important;
}

.u-push-right {
  margin-right: 10px !important;
}

.u-push-right--one-and-half {
  margin-right: 15px !important;
}

.u-push-right--double {
  margin-right: 20px !important;
}

.u-push-right--double-and-half {
  margin-right: 25px !important;
}

.u-push-right--triple {
  margin-right: 30px !important;
}

.u-push-right--none {
  margin-right: 0 !important;
}

.u-push-right--auto {
  margin-right: auto;
}

.u-push-left--tenth {
  margin-left: 1px !important;
}

.u-push-left--fifth {
  margin-left: 2px !important;
}

.u-push-left--half {
  margin-left: 5px !important;
}

.u-push-left {
  margin-left: 10px !important;
}

.u-push-left--one-and-half {
  margin-left: 15px !important;
}

.u-push-left--double {
  margin-left: 20px !important;
}

.u-push-left--double-and-half {
  margin-left: 25px !important;
}

.u-push-left--triple {
  margin-left: 30px !important;
}

.u-push-left--none {
  margin-left: 0 !important;
}

.u-push-left--auto {
  margin-left: auto;
}

.u-text-left {
  text-align: left !important;
}

.u-text-center {
  text-align: center !important;
}

.u-text-right {
  text-align: right !important;
}

.u-text-no-decoration {
  text-decoration: none;
}

.u-text-normal {
  font-weight: 400 !important;
}

.u-text-bold {
  font-weight: 600 !important;
}

.u-text-heavy {
  font-weight: 800 !important;
}

.u-text-font-size-xs {
  font-size: 11px;
}

.u-text-font-size-s {
  font-size: 12px !important;
}

.u-text-font-size-sm {
  font-size: 14px !important;
}

.u-text-font-size-m {
  font-size: 16px;
}

.u-text-font-size-ml {
  font-size: 18px;
}

.u-text-font-size-l {
  font-size: 20px;
}

.u-text-font-size-l-1 {
  font-size: 21px;
}

.u-text-font-size-xl {
  font-size: 28px;
}

.u-text-break-word {
  word-break: break-word;
}

.u-text-uppercase {
  text-transform: uppercase !important;
}

.u-text-underline {
  text-decoration: underline !important;
}

.u-list--unordered {
  line-height: 1.6;
  list-style: disc;
  margin-left: 20px;
}

.u-line-height-1 {
  line-height: 1;
}

.u-line-height-1-2 {
  line-height: 1.2;
}

.u-line-height-1-4 {
  line-height: 1.4;
}

.u-line-height-1-5 {
  line-height: 1.5;
}

.u-line-height-0 {
  line-height: 0 !important;
}

.u-width-full {
  width: 100% !important;
}

.u-width-75 {
  width: 75% !important;
}

.u-width-50 {
  width: 50% !important;
}

.u-max-width--min-content {
  max-width: -moz-min-content !important;
  max-width: min-content !important;
}

.u-min-width--fit-content {
  min-width: -moz-fit-content;
  min-width: fit-content;
}

.u-max-width--fit-content {
  max-width: -moz-fit-content;
  max-width: fit-content;
}

.u-max-width-full {
  max-width: 100% !important;
}

.u-height-full {
  height: 100%;
}

.u-height-auto {
  height: auto !important;
}

.u-max-height-full {
  max-height: 100% !important;
}

.u-cursor-default {
  cursor: default !important;
}

.u-cursor-not-allowed {
  cursor: not-allowed;
}

.u-cursor-pointer {
  cursor: pointer !important;
}

.u-display-inline {
  display: inline !important;
}

.u-display-block {
  display: block !important;
}

.u-display-inline-block {
  display: inline-block;
}

.u-display-flex {
  display: flex !important;
}

.u-display-inline-flex {
  display: inline-flex !important;
}

.u-display-none {
  display: none !important;
}
@media (max-width: 1230px) {
  .u-display-none--app-container-min-width-down {
    display: none !important;
  }
}
@media (max-width: 1380px) {
  .u-display-none--app-content-max-width-down {
    display: none !important;
  }
}

.u-content-blur {
  filter: blur(2px);
  opacity: 0.5;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.u-content-blur--with-fade-out::before {
  top: 0;
  left: 0;
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgb(255, 255, 255) 41%, rgb(255, 255, 255) 100%);
  content: "";
  z-index: 999;
}

.u-overflow-hidden {
  overflow: hidden !important;
}

.u-overflow-visible {
  overflow: visible !important;
}

.u-overflow-auto {
  overflow: auto !important;
}

.u-position-relative {
  position: relative !important;
}

.u-pad-horizontal,
.u-pad-horizontal--single {
  padding-left: 10px !important;
  padding-right: 10px !important;
}

.u-pad-horizontal--one-and-half,
.u-pad-horizontal--single-and-half {
  padding-left: 15px !important;
  padding-right: 15px !important;
}

.u-pad-horizontal--double {
  padding-left: 20px !important;
  padding-right: 20px !important;
}

.u-pad-horizontal--triple {
  padding-left: 30px !important;
  padding-right: 30px !important;
}

.u-pad-horizontal--none {
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.u-pad-vertical,
.u-pad-vertical--single {
  padding-bottom: 10px !important;
  padding-top: 10px !important;
}

.u-pad-vertical--one-and-half,
.u-pad-vertical--single-and-half {
  padding-bottom: 15px !important;
  padding-top: 15px !important;
}

.u-pad-vertical--half {
  padding-bottom: 5px !important;
  padding-top: 5px !important;
}

.u-pad-vertical--double {
  padding-bottom: 20px !important;
  padding-top: 20px !important;
}

.u-pad-vertical--double-and-half {
  padding-bottom: 25px !important;
  padding-top: 25px !important;
}

.u-pad-vertical--triple {
  padding-bottom: 30px !important;
  padding-top: 30px !important;
}

.u-pad-top {
  padding-top: 10px !important;
}

.u-pad-top--half {
  padding-top: 5px !important;
}

.u-pad-top--one-and-half {
  padding-top: 15px !important;
}

.u-pad-top--double {
  padding-top: 20px !important;
}

.u-pad-top--triple {
  padding-top: 30px !important;
}

.u-pad-top--none {
  padding-top: 0 !important;
}

.u-pad-bottom {
  padding-bottom: 10px !important;
}

.u-pad-bottom--half {
  padding-bottom: 5px !important;
}

.u-pad-bottom--one-and-half {
  padding-bottom: 15px !important;
}

.u-pad-bottom--double {
  padding-bottom: 20px !important;
}

.u-pad-bottom--triple {
  padding-bottom: 30px !important;
}

.u-pad-bottom--none {
  padding-bottom: 0 !important;
}

.u-pad-right {
  padding-right: 10px !important;
}

.u-pad-right--half {
  padding-right: 5px !important;
}

.u-pad-right--one-and-half {
  padding-right: 15px !important;
}

.u-pad-right--double {
  padding-right: 20px !important;
}

.u-pad-right--triple {
  padding-right: 30px !important;
}

.u-pad-right--none {
  padding-right: 0 !important;
}

.u-pad-left {
  padding-left: 10px !important;
}

.u-pad-left--half {
  padding-left: 5px !important;
}

.u-pad-left--one-and-half {
  padding-left: 15px !important;
}

.u-pad-left--double {
  padding-left: 20px !important;
}

.u-pad-left--triple {
  padding-left: 30px !important;
}

.u-pad-left--none {
  padding-left: 0 !important;
}

.u-pad--none {
  padding: 0 !important;
}

.u-pad--single {
  padding: 10px !important;
}

.u-pad--double {
  padding: 20px !important;
}

.u-text-first-capital {
  text-transform: lowercase;
}
.u-text-first-capital::first-letter {
  text-transform: capitalize;
}

.u-info-icon {
  color: #62718a !important;
}

.u-text-body {
  color: #404b55 !important;
}

.u-text-utility {
  color: #596976;
}

.u-text-muted, .required-fields-legend__legend {
  color: #b7b7b7;
}

.u-text-muted-alt {
  color: #8c9eab !important;
}

.u-text-success {
  color: #73c11d;
}

.u-text-warning {
  color: #ec8c1d !important;
}

.u-text-alert {
  color: #ef5555 !important;
}

.u-text-dark-blue {
  color: #404b55 !important;
}

.u-text-primary {
  color: #073572 !important;
}

.u-text-white {
  color: #fff;
}

.u-animation-none {
  animation: none !important;
}

.u-border-alert {
  border-color: #ef5555 !important;
}

.u-border-input {
  border: 1px solid #b7b7b7 !important;
}

.u-border-top {
  border-top: 1px solid #e6eaec !important;
}

.u-border-bottom {
  border-bottom: 1px solid #e6eaec !important;
}

.u-border-right {
  border-right: 1px solid #e6eaec !important;
}

.u-border-left {
  border-left: 1px solid #e6eaec !important;
}

.u-border {
  border: 1px solid #e6eaec !important;
}

.u-border-bottom {
  border-bottom: 1px solid #e6eaec !important;
}

.u-border-bottom--no-radius {
  border-bottom-left-radius: 0 !important;
  border-bottom-right-radius: 0 !important;
}

.u-border-top--dark {
  border-top: 1px solid #d7dde2 !important;
}

.u-border-top--no-radius {
  border-top-left-radius: 0 !important;
  border-top-right-radius: 0 !important;
  border-top-width: 0 !important;
}

.u-no-border {
  border: 0 !important;
}

.u-no-border--top {
  border-top-width: 0 !important;
}

.u-transition-color {
  transition: color 0.15s ease-in;
}

.u-transition-border-color-background-color {
  transition: border-color 0.2s ease, background-color 0.2s ease;
}

.modal-dialog__close-btn,
.u-reset-btn,
.u-reset-fa-icon {
  margin-left: 0 !important;
  margin-right: 0 !important;
}
.u-reset-section,
.u-reset-heading,
.u-reset-field-label,
.u-reset-info-hint,
.u-reset-ul {
  margin-bottom: 0 !important;
}
.u-reset-inputs {
  margin-right: 0 !important;
}
.u-reset-p {
  padding-bottom: 0 !important;
}
.modal-dialog__close-btn,
.u-reset-modal-dialog__close-btn {
  border: none !important;
  height: auto !important;
  margin-bottom: 0 !important;
  margin-top: 0 !important;
  min-height: auto !important;
}

.u-vertical-align-middle {
  vertical-align: middle !important;
}

.u-float-left {
  float: left !important;
}

.u-sr-only {
  border: 0 !important;
  clip: rect(1px, 1px, 1px, 1px) !important;
  clip-path: inset(50%) !important;
  height: 1px !important;
  overflow: hidden !important;
  padding: 0 !important;
  position: absolute !important;
  white-space: nowrap !important;
  width: 1px !important;
}

.u-min-width-0 {
  min-width: 0;
}

.u-whitespace-nowrap {
  white-space: nowrap;
}

.u-ellipsis-2-lines {
  -webkit-box-orient: vertical;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
}
/** Generic flex utilities **/
.flex-columns {
  margin: -0.5rem;
  display: flex;
}
.flex-columns > .flex-column {
  padding: 0.5rem;
}
.flex-columns .flex-column {
  flex: 1;
}
.flex-columns .flex-column--is-1 {
  flex: none;
  width: 8.3333333333%;
}
.flex-columns .flex-column--is-offset-1 {
  margin-left: 8.3333333333%;
}
.flex-columns .flex-column--is-2 {
  flex: none;
  width: 16.6666666667%;
}
.flex-columns .flex-column--is-offset-2 {
  margin-left: 16.6666666667%;
}
.flex-columns .flex-column--is-3 {
  flex: none;
  width: 25%;
}
.flex-columns .flex-column--is-offset-3 {
  margin-left: 25%;
}
.flex-columns .flex-column--is-4 {
  flex: none;
  width: 33.3333333333%;
}
.flex-columns .flex-column--is-offset-4 {
  margin-left: 33.3333333333%;
}
.flex-columns .flex-column--is-5 {
  flex: none;
  width: 41.6666666667%;
}
.flex-columns .flex-column--is-offset-5 {
  margin-left: 41.6666666667%;
}
.flex-columns .flex-column--is-6 {
  flex: none;
  width: 50%;
}
.flex-columns .flex-column--is-offset-6 {
  margin-left: 50%;
}
.flex-columns .flex-column--is-7 {
  flex: none;
  width: 58.3333333333%;
}
.flex-columns .flex-column--is-offset-7 {
  margin-left: 58.3333333333%;
}
.flex-columns .flex-column--is-8 {
  flex: none;
  width: 66.6666666667%;
}
.flex-columns .flex-column--is-offset-8 {
  margin-left: 66.6666666667%;
}
.flex-columns .flex-column--is-9 {
  flex: none;
  width: 75%;
}
.flex-columns .flex-column--is-offset-9 {
  margin-left: 75%;
}
.flex-columns .flex-column--is-10 {
  flex: none;
  width: 83.3333333333%;
}
.flex-columns .flex-column--is-offset-10 {
  margin-left: 83.3333333333%;
}
.flex-columns .flex-column--is-11 {
  flex: none;
  width: 91.6666666667%;
}
.flex-columns .flex-column--is-offset-11 {
  margin-left: 91.6666666667%;
}
.flex-columns .flex-column--is-12 {
  flex: none;
  width: 100%;
}
.flex-columns .flex-column--is-offset-12 {
  margin-left: 100%;
}
.flex-columns .flex-column--is-narrow {
  flex: none;
}
.flex-columns--is-multiline {
  flex-wrap: wrap;
}
.flex-columns--gap-none {
  margin: 0;
}
.flex-columns--gap-none > .flex-column {
  padding: 0;
}
.flex-columns--gap-large {
  margin: -1rem;
}
.flex-columns--gap-large > .flex-column {
  padding: 1rem;
}
.flex-columns--gap-x-large {
  margin: -40px;
}
.flex-columns--gap-x-large > .flex-column {
  padding: 40px;
}

.flex-none {
  flex: none;
}

.flex-row, .email-notifications-advanced-settings__row {
  display: flex;
  flex-direction: row;
}

.flex-row-column {
  display: flex;
  flex-direction: row;
}
@media screen and (max-width: 0) {
  .flex-row-column {
    flex-direction: column;
  }
}

.flex-item {
  flex: 1;
}

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

.flex-1-1 {
  flex: 1.1 1 0%;
}

.flex-1-2 {
  flex: 1.2 1 0%;
}

.flex-1-3 {
  flex: 1.3 1 0%;
}

.flex-1-4 {
  flex: 1.4 1 0%;
}

.flex-1-5 {
  flex: 1.5 1 0%;
}

.flex-1-6 {
  flex: 1.6 1 0%;
}

.flex-1-7 {
  flex: 1.7 1 0%;
}

.flex-1-8 {
  flex: 1.8 1 0%;
}

.flex-1-9 {
  flex: 1.9 1 0%;
}

.flex-1-10 {
  flex: 2 1 0%;
}

.flex-2 {
  flex: 2 1 0%;
}

.flex-2-1 {
  flex: 2.1 1 0%;
}

.flex-2-2 {
  flex: 2.2 1 0%;
}

.flex-2-3 {
  flex: 2.3 1 0%;
}

.flex-2-4 {
  flex: 2.4 1 0%;
}

.flex-2-5 {
  flex: 2.5 1 0%;
}

.flex-2-6 {
  flex: 2.6 1 0%;
}

.flex-2-7 {
  flex: 2.7 1 0%;
}

.flex-2-8 {
  flex: 2.8 1 0%;
}

.flex-2-9 {
  flex: 2.9 1 0%;
}

.flex-2-10 {
  flex: 3 1 0%;
}

.flex-3 {
  flex: 3 1 0%;
}

.flex-3-1 {
  flex: 3.1 1 0%;
}

.flex-3-2 {
  flex: 3.2 1 0%;
}

.flex-3-3 {
  flex: 3.3 1 0%;
}

.flex-3-4 {
  flex: 3.4 1 0%;
}

.flex-3-5 {
  flex: 3.5 1 0%;
}

.flex-3-6 {
  flex: 3.6 1 0%;
}

.flex-3-7 {
  flex: 3.7 1 0%;
}

.flex-3-8 {
  flex: 3.8 1 0%;
}

.flex-3-9 {
  flex: 3.9 1 0%;
}

.flex-3-10 {
  flex: 4 1 0%;
}

.flex-4 {
  flex: 4 1 0%;
}

.flex-4-1 {
  flex: 4.1 1 0%;
}

.flex-4-2 {
  flex: 4.2 1 0%;
}

.flex-4-3 {
  flex: 4.3 1 0%;
}

.flex-4-4 {
  flex: 4.4 1 0%;
}

.flex-4-5 {
  flex: 4.5 1 0%;
}

.flex-4-6 {
  flex: 4.6 1 0%;
}

.flex-4-7 {
  flex: 4.7 1 0%;
}

.flex-4-8 {
  flex: 4.8 1 0%;
}

.flex-4-9 {
  flex: 4.9 1 0%;
}

.flex-4-10 {
  flex: 5 1 0%;
}

.flex-5 {
  flex: 5 1 0%;
}

.flex-5-1 {
  flex: 5.1 1 0%;
}

.flex-5-2 {
  flex: 5.2 1 0%;
}

.flex-5-3 {
  flex: 5.3 1 0%;
}

.flex-5-4 {
  flex: 5.4 1 0%;
}

.flex-5-5 {
  flex: 5.5 1 0%;
}

.flex-5-6 {
  flex: 5.6 1 0%;
}

.flex-5-7 {
  flex: 5.7 1 0%;
}

.flex-5-8 {
  flex: 5.8 1 0%;
}

.flex-5-9 {
  flex: 5.9 1 0%;
}

.flex-5-10 {
  flex: 6 1 0%;
}

.flex-6 {
  flex: 6 1 0%;
}

.flex-6-1 {
  flex: 6.1 1 0%;
}

.flex-6-2 {
  flex: 6.2 1 0%;
}

.flex-6-3 {
  flex: 6.3 1 0%;
}

.flex-6-4 {
  flex: 6.4 1 0%;
}

.flex-6-5 {
  flex: 6.5 1 0%;
}

.flex-6-6 {
  flex: 6.6 1 0%;
}

.flex-6-7 {
  flex: 6.7 1 0%;
}

.flex-6-8 {
  flex: 6.8 1 0%;
}

.flex-6-9 {
  flex: 6.9 1 0%;
}

.flex-6-10 {
  flex: 7 1 0%;
}

.flex-7 {
  flex: 7 1 0%;
}

.flex-7-1 {
  flex: 7.1 1 0%;
}

.flex-7-2 {
  flex: 7.2 1 0%;
}

.flex-7-3 {
  flex: 7.3 1 0%;
}

.flex-7-4 {
  flex: 7.4 1 0%;
}

.flex-7-5 {
  flex: 7.5 1 0%;
}

.flex-7-6 {
  flex: 7.6 1 0%;
}

.flex-7-7 {
  flex: 7.7 1 0%;
}

.flex-7-8 {
  flex: 7.8 1 0%;
}

.flex-7-9 {
  flex: 7.9 1 0%;
}

.flex-7-10 {
  flex: 8 1 0%;
}

.flex-8 {
  flex: 8 1 0%;
}

.flex-8-1 {
  flex: 8.1 1 0%;
}

.flex-8-2 {
  flex: 8.2 1 0%;
}

.flex-8-3 {
  flex: 8.3 1 0%;
}

.flex-8-4 {
  flex: 8.4 1 0%;
}

.flex-8-5 {
  flex: 8.5 1 0%;
}

.flex-8-6 {
  flex: 8.6 1 0%;
}

.flex-8-7 {
  flex: 8.7 1 0%;
}

.flex-8-8 {
  flex: 8.8 1 0%;
}

.flex-8-9 {
  flex: 8.9 1 0%;
}

.flex-8-10 {
  flex: 9 1 0%;
}

.flex-9 {
  flex: 9 1 0%;
}

.flex-9-1 {
  flex: 9.1 1 0%;
}

.flex-9-2 {
  flex: 9.2 1 0%;
}

.flex-9-3 {
  flex: 9.3 1 0%;
}

.flex-9-4 {
  flex: 9.4 1 0%;
}

.flex-9-5 {
  flex: 9.5 1 0%;
}

.flex-9-6 {
  flex: 9.6 1 0%;
}

.flex-9-7 {
  flex: 9.7 1 0%;
}

.flex-9-8 {
  flex: 9.8 1 0%;
}

.flex-9-9 {
  flex: 9.9 1 0%;
}

.flex-9-10 {
  flex: 10 1 0%;
}

.flex-10 {
  flex: 10 1 0%;
}

.flex-10-1 {
  flex: 10.1 1 0%;
}

.flex-10-2 {
  flex: 10.2 1 0%;
}

.flex-10-3 {
  flex: 10.3 1 0%;
}

.flex-10-4 {
  flex: 10.4 1 0%;
}

.flex-10-5 {
  flex: 10.5 1 0%;
}

.flex-10-6 {
  flex: 10.6 1 0%;
}

.flex-10-7 {
  flex: 10.7 1 0%;
}

.flex-10-8 {
  flex: 10.8 1 0%;
}

.flex-10-9 {
  flex: 10.9 1 0%;
}

.flex-10-10 {
  flex: 11 1 0%;
}

.flex-11 {
  flex: 11 1 0%;
}

.flex-11-1 {
  flex: 11.1 1 0%;
}

.flex-11-2 {
  flex: 11.2 1 0%;
}

.flex-11-3 {
  flex: 11.3 1 0%;
}

.flex-11-4 {
  flex: 11.4 1 0%;
}

.flex-11-5 {
  flex: 11.5 1 0%;
}

.flex-11-6 {
  flex: 11.6 1 0%;
}

.flex-11-7 {
  flex: 11.7 1 0%;
}

.flex-11-8 {
  flex: 11.8 1 0%;
}

.flex-11-9 {
  flex: 11.9 1 0%;
}

.flex-11-10 {
  flex: 12 1 0%;
}

.flex-12 {
  flex: 12 1 0%;
}

.flex-12-1 {
  flex: 12.1 1 0%;
}

.flex-12-2 {
  flex: 12.2 1 0%;
}

.flex-12-3 {
  flex: 12.3 1 0%;
}

.flex-12-4 {
  flex: 12.4 1 0%;
}

.flex-12-5 {
  flex: 12.5 1 0%;
}

.flex-12-6 {
  flex: 12.6 1 0%;
}

.flex-12-7 {
  flex: 12.7 1 0%;
}

.flex-12-8 {
  flex: 12.8 1 0%;
}

.flex-12-9 {
  flex: 12.9 1 0%;
}

.flex-12-10 {
  flex: 13 1 0%;
}

.flex-05 {
  flex: 0.5 !important;
}

.flex-parent-for-ellipsis {
  min-width: 0;
}

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

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

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

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

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

.flex-basis--0 {
  flex-basis: 0;
}

.flex-basis--100 {
  flex-basis: 100%;
}

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

.flex-align-center-center {
  align-items: center;
  justify-content: center;
}

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

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

.flex-align-initial-center {
  justify-content: center;
}

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

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

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

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

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

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

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

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

.flex-shrink-none {
  flex-shrink: 0 !important;
}

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

.timeline-header-section__feed-name, .timeline-item__name, .people-timeline-item__name, .lead-prospects-card__title-with-location, .lead-prospects-card__person-name, .feed-summary__item-title, .feed-notifications-table__email, .feed-notifications-table__name, .person-page__header__name, .route-website-feed-edit .feed-edit-header--tab--label, .page-hero-title, .u-text-ellipsis {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.__0c345--has-tags::before, .__f9204__loader::before, .timeline-tab-switcher .tab.active::after, .lead-prospects-card--placeholder .prospect-placeholder__mask--horizontal--middle::after, .interval-custom-select__picker::after, .feed-controls::after, .feature-highlight::before, .feature-highlight::after, .share-panel__loader::before, .skeleton-loader::before, .company-picture--placeholder::after, .checkbox-control__toggle-switch::before, .pagination li a::after,
.pagination li span::after, .tip__mask--horizontal--middle::after, .simple-tabs .simple-tab.active::after, .icon--circled::before, .icon-info::before, .icon-exclamation::before, .icon-question::before {
  content: "";
  display: block;
  position: absolute;
}

.lead-prospects-card--placeholder .prospect-placeholder__wrapper, .tip__bg {
  animation: contentPlaceholderBackgroundShimmer 1s infinite linear;
  background: linear-gradient(to right, #eceff0 8%, #dae0e3 18%, #eceff0 33%);
  background-size: 180% 100%;
  max-width: 400px;
  position: relative;
}

.animation-bounce {
  animation: bounce-highlight 0.5s ease-out;
}

.animation-pulsate,
.count-label .count-label-loading {
  animation: pulsate 0.75s ease-out infinite;
}

.gradient-border {
  position: relative;
  z-index: 0;
}

.gradient-border::before {
  animation: gradient-rotate 6s ease infinite;
  background: linear-gradient(90deg, #ef8eff, #9d20d8, rgba(172, 4, 251, 0.1019607843), #9d20d8, #ef8eff);
  background-size: 300% 300%;
  border-radius: 0.5rem;
  content: "";
  inset: -1px;
  position: absolute;
  z-index: -1;
}

.gradient-border::after {
  background: inherit;
  border-radius: 0.4rem;
  content: "";
  inset: 0;
  position: absolute;
  z-index: -1;
}

@keyframes gradient-rotate {
  0% {
    background-position: 0% 0%;
  }
  25% {
    background-position: 100% 0%;
  }
  50% {
    background-position: 100% 100%;
  }
  75% {
    background-position: 0% 100%;
  }
  100% {
    background-position: 0% 0%;
  }
}
/* stylelint-disable value-keyword-case */
/* stylelint-enable value-keyword-case */
/* stylelint-disable value-keyword-case */
/* stylelint-enable value-keyword-case */
/* stylelint-disable value-keyword-case */
/* stylelint-enable value-keyword-case */
[role=button],
.btn,
.modal-dialog__close-btn {
  cursor: pointer;
}

.btn,
.modal-dialog__close-btn {
  align-items: center;
  background-color: transparent;
  border: 2px solid #073572;
  border-radius: 5px;
  color: #073572;
  display: inline-flex;
  flex-grow: 0;
  flex-shrink: 0;
  font-family: inherit;
  font-size: 14px;
  font-weight: normal;
  height: 40px;
  justify-content: center;
  line-height: 1em;
  min-height: 40px;
  outline: none;
  padding: 0.6em 1em;
  position: relative;
  text-decoration: none;
  transition: color 0.2s ease, background-color 0.2s ease, border 0.2s ease;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  white-space: nowrap;
}
.btn.btn-tiny,
.btn-tiny.modal-dialog__close-btn {
  border-radius: 3px;
  border-width: 1px;
  box-shadow: rgba(0, 0, 0, 0.2) 0 1px 16px -1px;
  font-size: 11px;
  height: 20px;
  line-height: 1.1em;
  min-height: 20px;
  padding: 0.2em 0.8em;
}
.btn.btn--allow-text-wrap,
.btn--allow-text-wrap.modal-dialog__close-btn {
  height: auto;
  white-space: normal;
}
.btn.btn-small,
.btn-small.modal-dialog__close-btn {
  border-width: 1px;
  font-size: 12px;
  height: 27px;
  line-height: 1.1em;
  min-height: 27px;
  padding: 0.5em 0.75em;
}
.btn.btn--allow-text-wrap,
.btn--allow-text-wrap.modal-dialog__close-btn {
  height: auto;
  white-space: normal;
}
.btn.btn-medium,
.btn-medium.modal-dialog__close-btn {
  border-width: 1px;
  font-size: 14px;
  height: 33px;
  min-height: 33px;
  padding: 0.65em 1em;
}
.btn.btn--allow-text-wrap,
.btn--allow-text-wrap.modal-dialog__close-btn {
  height: auto;
  white-space: normal;
}
.btn.btn-regular,
.btn-regular.modal-dialog__close-btn {
  border-width: 1px;
  font-size: 14px;
  height: 33px;
  min-height: 33px;
  padding: 0.65em 1em;
}
.btn.btn--allow-text-wrap,
.btn--allow-text-wrap.modal-dialog__close-btn {
  height: auto;
  white-space: normal;
}
.btn.btn-fill-primary,
.btn-fill-primary.modal-dialog__close-btn {
  background-color: #073572;
  border-color: transparent;
  color: #fff;
}
.btn.btn-fill-primary:focus:not(.disabled):not([disabled]), .btn.btn-fill-primary:hover:not(.disabled):not([disabled]), .btn.btn-fill-primary:active:not(.disabled):not([disabled]), .btn.btn-fill-primary--active:not(.disabled):not([disabled]),
.btn-fill-primary.modal-dialog__close-btn:focus:not(.disabled):not([disabled]),
.btn-fill-primary.modal-dialog__close-btn:hover:not(.disabled):not([disabled]),
.btn-fill-primary.modal-dialog__close-btn:active:not(.disabled):not([disabled]),
.btn-fill-primary--active.modal-dialog__close-btn:not(.disabled):not([disabled]) {
  background-color: #05234c;
  border-color: transparent;
}
.btn.btn-fill-success,
.btn-fill-success.modal-dialog__close-btn {
  background-color: #73c11d;
  border-color: transparent;
  color: #fff;
}
.btn.btn-fill-success:focus:not(.disabled):not([disabled]), .btn.btn-fill-success:hover:not(.disabled):not([disabled]), .btn.btn-fill-success:active:not(.disabled):not([disabled]), .btn.btn-fill-success--active:not(.disabled):not([disabled]),
.btn-fill-success.modal-dialog__close-btn:focus:not(.disabled):not([disabled]),
.btn-fill-success.modal-dialog__close-btn:hover:not(.disabled):not([disabled]),
.btn-fill-success.modal-dialog__close-btn:active:not(.disabled):not([disabled]),
.btn-fill-success--active.modal-dialog__close-btn:not(.disabled):not([disabled]) {
  background-color: #6bb41b;
  border-color: transparent;
}
.btn.btn-fill-warning,
.btn-fill-warning.modal-dialog__close-btn {
  background-color: #ffb700;
  border-color: transparent;
  color: #fff;
}
.btn.btn-fill-warning:focus:not(.disabled):not([disabled]), .btn.btn-fill-warning:hover:not(.disabled):not([disabled]), .btn.btn-fill-warning:active:not(.disabled):not([disabled]), .btn.btn-fill-warning--active:not(.disabled):not([disabled]),
.btn-fill-warning.modal-dialog__close-btn:focus:not(.disabled):not([disabled]),
.btn-fill-warning.modal-dialog__close-btn:hover:not(.disabled):not([disabled]),
.btn-fill-warning.modal-dialog__close-btn:active:not(.disabled):not([disabled]),
.btn-fill-warning--active.modal-dialog__close-btn:not(.disabled):not([disabled]) {
  background-color: #f0ac00;
  border-color: transparent;
}
.btn.btn-fill-alert,
.btn-fill-alert.modal-dialog__close-btn {
  background-color: #ef5555;
  border-color: transparent;
  color: #fff;
}
.btn.btn-fill-alert:focus:not(.disabled):not([disabled]), .btn.btn-fill-alert:hover:not(.disabled):not([disabled]), .btn.btn-fill-alert:active:not(.disabled):not([disabled]), .btn.btn-fill-alert--active:not(.disabled):not([disabled]),
.btn-fill-alert.modal-dialog__close-btn:focus:not(.disabled):not([disabled]),
.btn-fill-alert.modal-dialog__close-btn:hover:not(.disabled):not([disabled]),
.btn-fill-alert.modal-dialog__close-btn:active:not(.disabled):not([disabled]),
.btn-fill-alert--active.modal-dialog__close-btn:not(.disabled):not([disabled]) {
  background-color: #eb3030;
  border-color: transparent;
}
.btn.btn-fill-primary--inverted,
.btn-fill-primary--inverted.modal-dialog__close-btn {
  background-color: #fff;
  border-color: transparent;
  color: #073572 #fff;
}
.btn.btn-fill-primary--inverted:focus:not(.disabled):not([disabled]), .btn.btn-fill-primary--inverted:hover:not(.disabled):not([disabled]), .btn.btn-fill-primary--inverted:active:not(.disabled):not([disabled]), .btn.btn-fill-primary--inverted--active:not(.disabled):not([disabled]),
.btn-fill-primary--inverted.modal-dialog__close-btn:focus:not(.disabled):not([disabled]),
.btn-fill-primary--inverted.modal-dialog__close-btn:hover:not(.disabled):not([disabled]),
.btn-fill-primary--inverted.modal-dialog__close-btn:active:not(.disabled):not([disabled]),
.btn-fill-primary--inverted--active.modal-dialog__close-btn:not(.disabled):not([disabled]) {
  background-color: #05234c;
  border-color: transparent;
  color: #fff;
}
.btn.btn-outline-primary,
.btn-outline-primary.modal-dialog__close-btn {
  border-color: #073572;
  color: #073572;
}
.btn.btn-outline-primary:focus:not(.disabled):not([disabled]), .btn.btn-outline-primary:hover:not(.disabled):not([disabled]), .btn.btn-outline-primary:active:not(.disabled):not([disabled]), .btn.btn-outline-primary--active:not(.disabled):not([disabled]),
.btn-outline-primary.modal-dialog__close-btn:focus:not(.disabled):not([disabled]),
.btn-outline-primary.modal-dialog__close-btn:hover:not(.disabled):not([disabled]),
.btn-outline-primary.modal-dialog__close-btn:active:not(.disabled):not([disabled]),
.btn-outline-primary--active.modal-dialog__close-btn:not(.disabled):not([disabled]) {
  background-color: #073572;
  color: #fff;
}
.btn.btn-outline-success,
.btn-outline-success.modal-dialog__close-btn {
  border-color: #73c11d;
  color: #73c11d;
}
.btn.btn-outline-success:focus:not(.disabled):not([disabled]), .btn.btn-outline-success:hover:not(.disabled):not([disabled]), .btn.btn-outline-success:active:not(.disabled):not([disabled]), .btn.btn-outline-success--active:not(.disabled):not([disabled]),
.btn-outline-success.modal-dialog__close-btn:focus:not(.disabled):not([disabled]),
.btn-outline-success.modal-dialog__close-btn:hover:not(.disabled):not([disabled]),
.btn-outline-success.modal-dialog__close-btn:active:not(.disabled):not([disabled]),
.btn-outline-success--active.modal-dialog__close-btn:not(.disabled):not([disabled]) {
  background-color: #73c11d;
  color: #fff;
}
.btn.btn-outline-warning,
.btn-outline-warning.modal-dialog__close-btn {
  border-color: #ffb700;
  color: #ffb700;
}
.btn.btn-outline-warning:focus:not(.disabled):not([disabled]), .btn.btn-outline-warning:hover:not(.disabled):not([disabled]), .btn.btn-outline-warning:active:not(.disabled):not([disabled]), .btn.btn-outline-warning--active:not(.disabled):not([disabled]),
.btn-outline-warning.modal-dialog__close-btn:focus:not(.disabled):not([disabled]),
.btn-outline-warning.modal-dialog__close-btn:hover:not(.disabled):not([disabled]),
.btn-outline-warning.modal-dialog__close-btn:active:not(.disabled):not([disabled]),
.btn-outline-warning--active.modal-dialog__close-btn:not(.disabled):not([disabled]) {
  background-color: #ffb700;
  color: #fff;
}
.btn.btn-outline-alert,
.btn-outline-alert.modal-dialog__close-btn {
  border-color: #ef5555;
  color: #ef5555;
}
.btn.btn-outline-alert:focus:not(.disabled):not([disabled]), .btn.btn-outline-alert:hover:not(.disabled):not([disabled]), .btn.btn-outline-alert:active:not(.disabled):not([disabled]), .btn.btn-outline-alert--active:not(.disabled):not([disabled]),
.btn-outline-alert.modal-dialog__close-btn:focus:not(.disabled):not([disabled]),
.btn-outline-alert.modal-dialog__close-btn:hover:not(.disabled):not([disabled]),
.btn-outline-alert.modal-dialog__close-btn:active:not(.disabled):not([disabled]),
.btn-outline-alert--active.modal-dialog__close-btn:not(.disabled):not([disabled]) {
  background-color: #ef5555;
  color: #fff;
}
.btn.btn-outline-dark,
.btn-outline-dark.modal-dialog__close-btn {
  border-color: #404b55;
  color: #404b55;
}
.btn.btn-outline-dark:focus:not(.disabled):not([disabled]), .btn.btn-outline-dark:hover:not(.disabled):not([disabled]), .btn.btn-outline-dark:active:not(.disabled):not([disabled]), .btn.btn-outline-dark--active:not(.disabled):not([disabled]),
.btn-outline-dark.modal-dialog__close-btn:focus:not(.disabled):not([disabled]),
.btn-outline-dark.modal-dialog__close-btn:hover:not(.disabled):not([disabled]),
.btn-outline-dark.modal-dialog__close-btn:active:not(.disabled):not([disabled]),
.btn-outline-dark--active.modal-dialog__close-btn:not(.disabled):not([disabled]) {
  background-color: #404b55;
  color: #fff;
}
.btn.btn-outline-white,
.btn-outline-white.modal-dialog__close-btn {
  border-color: #fff;
  color: #fff;
}
.btn.btn-outline-white:focus:not(.disabled):not([disabled]), .btn.btn-outline-white:hover:not(.disabled):not([disabled]), .btn.btn-outline-white:active:not(.disabled):not([disabled]), .btn.btn-outline-white--active:not(.disabled):not([disabled]),
.btn-outline-white.modal-dialog__close-btn:focus:not(.disabled):not([disabled]),
.btn-outline-white.modal-dialog__close-btn:hover:not(.disabled):not([disabled]),
.btn-outline-white.modal-dialog__close-btn:active:not(.disabled):not([disabled]),
.btn-outline-white--active.modal-dialog__close-btn:not(.disabled):not([disabled]) {
  background-color: #fff;
  color: #404b55;
}
.btn.btn-link-primary,
.btn-link-primary.modal-dialog__close-btn {
  border-color: transparent;
  color: #073572;
}
.btn.btn-link-primary:focus:not(.disabled):not([disabled]), .btn.btn-link-primary:hover:not(.disabled):not([disabled]), .btn.btn-link-primary:active:not(.disabled):not([disabled]), .btn.btn-link-primary--active:not(.disabled):not([disabled]),
.btn-link-primary.modal-dialog__close-btn:focus:not(.disabled):not([disabled]),
.btn-link-primary.modal-dialog__close-btn:hover:not(.disabled):not([disabled]),
.btn-link-primary.modal-dialog__close-btn:active:not(.disabled):not([disabled]),
.btn-link-primary--active.modal-dialog__close-btn:not(.disabled):not([disabled]) {
  color: #03132a;
}
.btn.btn-link-muted,
.btn-link-muted.modal-dialog__close-btn {
  border-color: transparent;
  color: #9eb2c0;
}
.btn.btn-link-muted:focus:not(.disabled):not([disabled]), .btn.btn-link-muted:hover:not(.disabled):not([disabled]), .btn.btn-link-muted:active:not(.disabled):not([disabled]), .btn.btn-link-muted--active:not(.disabled):not([disabled]),
.btn-link-muted.modal-dialog__close-btn:focus:not(.disabled):not([disabled]),
.btn-link-muted.modal-dialog__close-btn:hover:not(.disabled):not([disabled]),
.btn-link-muted.modal-dialog__close-btn:active:not(.disabled):not([disabled]),
.btn-link-muted--active.modal-dialog__close-btn:not(.disabled):not([disabled]) {
  color: #587387;
}
.btn.btn-link-dark,
.btn-link-dark.modal-dialog__close-btn {
  border-color: transparent;
  color: #404b55;
}
.btn.btn-link-dark:focus:not(.disabled):not([disabled]), .btn.btn-link-dark:hover:not(.disabled):not([disabled]), .btn.btn-link-dark:active:not(.disabled):not([disabled]), .btn.btn-link-dark--active:not(.disabled):not([disabled]),
.btn-link-dark.modal-dialog__close-btn:focus:not(.disabled):not([disabled]),
.btn-link-dark.modal-dialog__close-btn:hover:not(.disabled):not([disabled]),
.btn-link-dark.modal-dialog__close-btn:active:not(.disabled):not([disabled]),
.btn-link-dark--active.modal-dialog__close-btn:not(.disabled):not([disabled]) {
  color: #090b0c;
}
.btn.btn-link-alert,
.btn-link-alert.modal-dialog__close-btn {
  border-color: transparent;
  color: #ef5555;
}
.btn.btn-link-alert:focus:not(.disabled):not([disabled]), .btn.btn-link-alert:hover:not(.disabled):not([disabled]), .btn.btn-link-alert:active:not(.disabled):not([disabled]), .btn.btn-link-alert--active:not(.disabled):not([disabled]),
.btn-link-alert.modal-dialog__close-btn:focus:not(.disabled):not([disabled]),
.btn-link-alert.modal-dialog__close-btn:hover:not(.disabled):not([disabled]),
.btn-link-alert.modal-dialog__close-btn:active:not(.disabled):not([disabled]),
.btn-link-alert--active.modal-dialog__close-btn:not(.disabled):not([disabled]) {
  color: #cb1313;
}
.btn.btn-link-white,
.btn-link-white.modal-dialog__close-btn {
  border-color: transparent;
  color: #fff;
}
.btn-full-width {
  width: 100%;
}
.btn__icon {
  margin-right: 5px;
}
.btn[disabled], .btn.disabled,
[disabled].modal-dialog__close-btn,
.disabled.modal-dialog__close-btn {
  cursor: default;
  opacity: 0.5;
}

.btn-group {
  display: inline-flex;
  vertical-align: top;
}
.btn-group > .btn, .btn-group > button {
  flex: 0 1 auto;
  margin-right: 0;
}
.btn-group > .btn:first-child, .btn-group > button:first-child {
  border-bottom-right-radius: 0;
  border-top-right-radius: 0;
  margin-left: 0;
}
.btn-group > .btn:last-child, .btn-group > button:last-child {
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
}
.btn-group > .btn:not(:first-child):not(:last-child), .btn-group > button:not(:first-child):not(:last-child) {
  border-radius: 0;
}
.btn-group > .btn:not(:last-child), .btn-group > button:not(:last-child) {
  border-right: none;
}

button.as-link {
  background-color: transparent;
  border: 0;
  color: #073572;
  cursor: pointer;
  font-size: inherit;
  outline: none;
  padding: 0;
  text-decoration: underline;
  transition: color 0.2s ease;
}
body button.as-link {
  font-family: "Figree", "Helvetica Neue", Helvetica, Arial, sans-serif;
}
button.as-link:hover {
  color: #041f42;
}
button.as-link--muted {
  color: #9eb2c0;
}
button.as-link--muted:hover {
  color: #587387;
}
button.as-link--no-underscore {
  text-decoration: none;
}

.field-with-addon {
  display: flex;
}
.field-with-addon > * {
  margin: 0;
}
.field-with-addon input:not(:first-child) {
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
}
.field-with-addon input:not(:last-child) {
  border-bottom-right-radius: 0;
  border-top-right-radius: 0;
}
.field-with-addon .field-addon {
  align-items: center;
  border: 1px solid #b7b7b7;
  border-radius: 5px;
  display: flex;
  padding: 0 10px;
}
.field-with-addon .field-addon--no-border {
  border: none;
}
.field-with-addon .field-addon__button {
  align-items: center;
  border: 1px solid #b7b7b7;
  display: flex;
  font-size: 12px;
  height: 100%;
  margin: 0 -10px;
  padding: 0 10px;
  text-decoration: none;
  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}
.field-with-addon .field-addon__button:hover {
  background-color: #073572;
  border-color: #073572;
  color: #fff;
}
.field-with-addon .field-addon__input-right input {
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
}
.field-with-addon .field-addon:not(:first-child) {
  border-bottom-left-radius: 0;
  border-left: none;
  border-top-left-radius: 0;
}
.field-with-addon .field-addon:not(:first-child) .field-addon__button {
  border-left: none;
  border-radius: 0 5px 5px 0;
}
.field-with-addon .field-addon:not(:last-child) {
  border-bottom-right-radius: 0;
  border-right: none;
  border-top-right-radius: 0;
}
.field-with-addon .field-addon:not(:last-child) .field-addon__button {
  border-radius: 5px 0 0 5px;
  border-right: none;
}

/*!*****************************************************

Freak Flags, Copyright ©2020 Michael P. Cohen. Freak flags is licenced under the MIT licence.

For complete information visit: www.freakflagsprite.com

******************************************************/
.fflag {
  background-image: url("/assets/images/icons/flagSprite42-7ea29d48f607eead56325c2e3707a524.png");
  background-repeat: no-repeat;
  background-size: 100% 49494%;
  border: 1px solid #e6eaec;
  border-radius: 3px;
  box-sizing: content-box;
  display: inline-block;
  overflow: hidden;
  position: relative;
  vertical-align: middle;
}

/* prettier-ignore */
.fflag-CH,
.fflag-NP {
  box-shadow: none !important;
}

.fflag-DZ {
  background-position: center 0.2287%;
}

.fflag-AO {
  background-position: center 0.4524%;
}

.fflag-BJ {
  background-position: center 0.6721%;
}

.fflag-BW {
  background-position: center 0.8958%;
}

.fflag-BF {
  background-position: center 1.1162%;
}

.fflag-BI {
  background-position: center 1.3379%;
}

.fflag-CM {
  background-position: center 1.5589%;
}

.fflag-CV {
  background-position: center 1.7836%;
}

.fflag-CF {
  background-position: center 2.0047%;
}

.fflag-TD {
  background-position: center 2.2247%;
}

.fflag-CD {
  background-position: left 2.4467%;
}

.fflag-DJ {
  background-position: left 2.6674%;
}

.fflag-EG {
  background-position: center 2.8931%;
}

.fflag-GQ {
  background-position: center 3.1125%;
}

.fflag-ER {
  background-position: left 3.3325%;
}

.fflag-ET {
  background-position: center 3.5542%;
}

.fflag-GA {
  background-position: center 3.7759%;
}

.fflag-GM {
  background-position: center 4.0015%;
}

.fflag-GH {
  background-position: center 4.2229%;
}

.fflag-GN {
  background-position: center 4.441%;
}

.fflag-GW {
  background-position: left 4.66663%;
}

.fflag-CI {
  background-position: center 4.8844%;
}

.fflag-KE {
  background-position: center 5.1061%;
}

.fflag-LS {
  background-position: center 5.3278%;
}

.fflag-LR {
  background-position: left 5.5495%;
}

.fflag-LY {
  background-position: center 5.7712%;
}

.fflag-MG {
  background-position: center 5.994%;
}

.fflag-MW {
  background-position: center 6.2156%;
}

.fflag-ML {
  background-position: center 6.4363%;
}

.fflag-MR {
  background-position: center 6.658%;
}

.fflag-MU {
  background-position: center 6.8805%;
}

.fflag-YT {
  background-position: center 7.1038%;
}

.fflag-MA {
  background-position: center 7.3231%;
}

.fflag-MZ {
  background-position: left 7.5448%;
}

.fflag-NA {
  background-position: left 7.7661%;
}

.fflag-NE {
  background-position: center 7.98937%;
}

.fflag-NG {
  background-position: center 8.2099%;
}

.fflag-CG {
  background-position: center 8.4316%;
}

.fflag-RE {
  background-position: center 8.6533%;
}

.fflag-RW {
  background-position: right 8.875%;
}

.fflag-SH {
  background-position: center 9.0967%;
}

.fflag-ST {
  background-position: center 9.32237%;
}

.fflag-SN {
  background-position: center 9.5426%;
}

.fflag-SC {
  background-position: left 9.7628%;
}

.fflag-SL {
  background-position: center 9.9845%;
}

.fflag-SO {
  background-position: center 10.2052%;
}

.fflag-ZA {
  background-position: left 10.4269%;
}

.fflag-SS {
  background-position: left 10.6486%;
}

.fflag-SD {
  background-position: center 10.8703%;
}

.fflag-SR {
  background-position: center 11.0945%;
}

.fflag-SZ {
  background-position: center 11.3135%;
}

.fflag-TG {
  background-position: left 11.5354%;
}

.fflag-TN {
  background-position: center 11.7593%;
}

.fflag-UG {
  background-position: center 11.9799%;
}

.fflag-TZ {
  background-position: center 12.2005%;
}

.fflag-EH {
  background-position: center 12.4222%;
}

.fflag-YE {
  background-position: center 12.644%;
}

.fflag-ZM {
  background-position: center 12.8664%;
}

.fflag-ZW {
  background-position: left 13.0873%;
}

.fflag-AI {
  background-position: center 13.309%;
}

.fflag-AG {
  background-position: center 13.5307%;
}

.fflag-AR {
  background-position: center 13.7524%;
}

.fflag-AW {
  background-position: left 13.9741%;
}

.fflag-BS {
  background-position: left 14.1958%;
}

.fflag-BB {
  background-position: center 14.4175%;
}

.fflag-BQ {
  background-position: center 14.6415%;
}

.fflag-BZ {
  background-position: center 14.8609%;
}

.fflag-BM {
  background-position: center 15.0826%;
}

.fflag-BO {
  background-position: center 15.306%;
}

.fflag-VG {
  background-position: center 15.528%;
}

.fflag-BR {
  background-position: center 15.7496%;
}

.fflag-CA {
  background-position: center 15.9694%;
}

.fflag-KY {
  background-position: center 16.1911%;
}

.fflag-CL {
  background-position: left 16.4128%;
}

.fflag-CO {
  background-position: left 16.6345%;
}

.fflag-KM {
  background-position: center 16.8562%;
}

.fflag-CR {
  background-position: center 17.0779%;
}

.fflag-CU {
  background-position: left 17.2996%;
}

.fflag-CW {
  background-position: center 17.5213%;
}

.fflag-DM {
  background-position: center 17.743%;
}

.fflag-DO {
  background-position: center 17.968%;
}

.fflag-EC {
  background-position: center 18.1864%;
}

.fflag-SV {
  background-position: center 18.4081%;
}

.fflag-FK {
  background-position: center 18.6298%;
}

.fflag-GF {
  background-position: center 18.8515%;
}

.fflag-GL {
  background-position: left 19.0732%;
}

.fflag-GD {
  background-position: center 19.2987%;
}

.fflag-GP {
  background-position: center 19.518%;
}

.fflag-GT {
  background-position: center 19.7383%;
}

.fflag-GY {
  background-position: center 19.96%;
}

.fflag-HT {
  background-position: center 20.1817%;
}

.fflag-HN {
  background-position: center 20.4034%;
}

.fflag-JM {
  background-position: center 20.6241%;
}

.fflag-MQ {
  background-position: center 20.8468%;
}

.fflag-MX {
  background-position: center 21.0685%;
}

.fflag-MS {
  background-position: center 21.2902%;
}

.fflag-NI {
  background-position: center 21.5119%;
}

.fflag-PA {
  background-position: center 21.7336%;
}

.fflag-PY {
  background-position: center 21.9553%;
}

.fflag-PE {
  background-position: center 22.177%;
}

.fflag-PR {
  background-position: left 22.4002%;
}

.fflag-BL {
  background-position: center 22.6204%;
}

.fflag-KN {
  background-position: center 22.8421%;
}

.fflag-LC {
  background-position: center 23.0638%;
}

.fflag-PM {
  background-position: center 23.2855%;
}

.fflag-VC {
  background-position: center 23.5072%;
}

.fflag-SX {
  background-position: left 23.732%;
}

.fflag-TT {
  background-position: center 23.9506%;
}

.fflag-TC {
  background-position: center 24.1723%;
}

.fflag-US {
  background-position: center 24.394%;
}

.fflag-VI {
  background-position: center 24.6157%;
}

.fflag-UY {
  background-position: left 24.8374%;
}

.fflag-VE {
  background-position: center 25.0591%;
}

.fflag-AF {
  background-position: center 25.2808%;
}

.fflag-AZ {
  background-position: center 25.5025%;
}

.fflag-BD {
  background-position: center 25.7242%;
}

.fflag-BT {
  background-position: center 25.9459%;
}

.fflag-BN {
  background-position: center 26.1676%;
}

.fflag-KH {
  background-position: center 26.3885%;
}

.fflag-CN {
  background-position: left 26.611%;
}

.fflag-GE {
  background-position: center 26.8327%;
}

.fflag-HK {
  background-position: center 27.0544%;
}

.fflag-IN {
  background-position: center 27.2761%;
}

.fflag-ID {
  background-position: center 27.4978%;
}

.fflag-JP {
  background-position: center 27.7195%;
}

.fflag-KZ {
  background-position: center 27.9412%;
}

.fflag-LA {
  background-position: center 28.1615%;
}

.fflag-MO {
  background-position: center 28.3846%;
}

.fflag-MY {
  background-position: center 28.6063%;
}

.fflag-MV {
  background-position: center 28.829%;
}

.fflag-MN {
  background-position: left 29.0497%;
}

.fflag-MM {
  background-position: center 29.2714%;
}

.fflag-NP {
  background-position: left 29.4931%;
}

.fflag-KP {
  background-position: left 29.7148%;
}

.fflag-MP {
  background-position: center 29.9365%;
}

.fflag-PW {
  background-position: center 30.1582%;
}

.fflag-PG {
  background-position: center 30.3799%;
}

.fflag-PH {
  background-position: left 30.6016%;
}

.fflag-SG {
  background-position: left 30.8233%;
}

.fflag-KR {
  background-position: center 31.045%;
}

.fflag-LK {
  background-position: right 31.2667%;
}

.fflag-TW {
  background-position: left 31.4884%;
}

.fflag-TJ {
  background-position: center 31.7101%;
}

.fflag-TH {
  background-position: center 31.9318%;
}

.fflag-TL {
  background-position: left 32.1535%;
}

.fflag-TM {
  background-position: center 32.3752%;
}

.fflag-VN {
  background-position: center 32.5969%;
}

.fflag-AL {
  background-position: center 32.8186%;
}

.fflag-AD {
  background-position: center 33.0403%;
}

.fflag-AM {
  background-position: center 33.258%;
}

.fflag-AT {
  background-position: center 33.4837%;
}

.fflag-BY {
  background-position: left 33.7054%;
}

.fflag-BE {
  background-position: center 33.9271%;
}

.fflag-BA {
  background-position: center 34.1488%;
}

.fflag-BG {
  background-position: center 34.3705%;
}

.fflag-HR {
  background-position: center 34.5922%;
}

.fflag-CY {
  background-position: center 34.8139%;
}

.fflag-CZ {
  background-position: left 35.0356%;
}

.fflag-DK {
  background-position: center 35.2555%;
}

.fflag-EE {
  background-position: center 35.479%;
}

.fflag-FO {
  background-position: center 35.7007%;
}

.fflag-FI {
  background-position: center 35.9224%;
}

.fflag-FR {
  background-position: center 36.1441%;
}

.fflag-DE {
  background-position: center 36.3658%;
}

.fflag-GI {
  background-position: center 36.5875%;
}

.fflag-GR {
  background-position: left 36.8092%;
}

.fflag-HU {
  background-position: center 37.0309%;
}

.fflag-IS {
  background-position: center 37.2526%;
}

.fflag-IE {
  background-position: center 37.4743%;
}

.fflag-IM {
  background-position: center 37.696%;
}

.fflag-IT {
  background-position: center 37.9177%;
}

.fflag-JE {
  background-position: center 38.1394%;
}

.fflag-XK {
  background-position: center 38.3611%;
}

.fflag-LV {
  background-position: center 38.5828%;
}

.fflag-LI {
  background-position: left 38.8045%;
}

.fflag-LT {
  background-position: center 39.0262%;
}

.fflag-LU {
  background-position: center 39.2479%;
}

.fflag-MT {
  background-position: left 39.4696%;
}

.fflag-MD {
  background-position: center 39.6913%;
}

.fflag-MC {
  background-position: center 27.5%;
}

.fflag-ME {
  background-position: center 40.1347%;
}

.fflag-NL {
  background-position: center 40.3564%;
}

.fflag-MK {
  background-position: center 40.5781%;
}

.fflag-NO {
  background-position: center 40.7998%;
}

.fflag-PL {
  background-position: center 41.0215%;
}

.fflag-PT {
  background-position: center 41.2432%;
}

.fflag-RO {
  background-position: center 41.4649%;
}

.fflag-RU {
  background-position: center 41.6866%;
}

.fflag-SM {
  background-position: center 41.9083%;
}

.fflag-RS {
  background-position: center 42.13%;
}

.fflag-SK {
  background-position: center 42.3517%;
}

.fflag-SI {
  background-position: center 42.5734%;
}

.fflag-ES {
  background-position: left 42.7951%;
}

.fflag-SE {
  background-position: center 43.0168%;
}

.fflag-CH {
  background-position: center 43.2385%;
}

.fflag-TR {
  background-position: center 43.4602%;
}

.fflag-UA {
  background-position: center 43.6819%;
}

.fflag-GB {
  background-position: center 43.9036%;
}

.fflag-VA {
  background-position: right 44.1253%;
}

.fflag-BH {
  background-position: center 44.347%;
}

.fflag-IR {
  background-position: center 44.5687%;
}

.fflag-IQ {
  background-position: center 44.7904%;
}

.fflag-IL {
  background-position: center 45.0121%;
}

.fflag-KW {
  background-position: left 45.2338%;
}

.fflag-JO {
  background-position: left 45.4555%;
}

.fflag-KG {
  background-position: center 45.6772%;
}

.fflag-LB {
  background-position: center 45.897%;
}

.fflag-OM {
  background-position: left 46.1206%;
}

.fflag-PK {
  background-position: center 46.3423%;
}

.fflag-PS {
  background-position: center 46.561%;
}

.fflag-QA {
  background-position: center 46.7857%;
}

.fflag-SA {
  background-position: center 47.0074%;
}

.fflag-SY {
  background-position: center 47.2291%;
}

.fflag-AE {
  background-position: center 47.4508%;
}

.fflag-UZ {
  background-position: left 47.6725%;
}

.fflag-AS {
  background-position: right 47.8942%;
}

.fflag-AU {
  background-position: center 48.1159%;
}

.fflag-CX {
  background-position: center 48.3376%;
}

.fflag-CC {
  background-position: center 48.5593%;
}

.fflag-CK {
  background-position: center 48.781%;
}

.fflag-FJ {
  background-position: center 49.0027%;
}

.fflag-PF {
  background-position: center 49.2244%;
}

.fflag-GU {
  background-position: center 49.4445%;
}

.fflag-KI {
  background-position: center 49.6678%;
}

.fflag-MH {
  background-position: left 49.8895%;
}

.fflag-FM {
  background-position: center 50.1112%;
}

.fflag-NC {
  background-position: center 50.3329%;
}

.fflag-NZ {
  background-position: center 50.5546%;
}

.fflag-NR {
  background-position: left 50.7763%;
}

.fflag-NU {
  background-position: center 50.998%;
}

.fflag-NF {
  background-position: center 51.2197%;
}

.fflag-WS {
  background-position: left 51.4414%;
}

.fflag-SB {
  background-position: left 51.6631%;
}

.fflag-TK {
  background-position: center 51.8848%;
}

.fflag-TO {
  background-position: left 52.1065%;
}

.fflag-TV {
  background-position: center 52.3282%;
}

.fflag-VU {
  background-position: left 52.5499%;
}

.fflag-WF {
  background-position: center 52.7716%;
}

.fflag.ff-xs {
  min-width: 12px;
  height: 7px;
}

.fflag.ff-sm {
  min-width: 18px;
  height: 11px;
}

.fflag.ff-md {
  min-width: 27px;
  height: 17px;
}

.fflag.ff-lg {
  min-width: 42px;
  height: 27px;
}

.fflag.ff-xl {
  min-width: 60px;
  height: 37px;
}

/* stylelint-disable value-keyword-case */
/* stylelint-enable value-keyword-case */
@font-face {
  font-family: "Lato";
  font-weight: 300;
  src: url("/assets/fonts/Lato-Light.woff") format("woff");
}
@font-face {
  font-family: "Lato";
  font-style: italic;
  font-weight: 300;
  src: url("/assets/fonts/Lato-LightItalic.woff") format("woff");
}
@font-face {
  font-family: "Lato";
  src: url("/assets/fonts/Lato-Regular.woff") format("woff");
}
@font-face {
  font-family: "Lato";
  font-style: italic;
  src: url("/assets/fonts/Lato-Italic.woff") format("woff");
}
@font-face {
  font-family: "Lato";
  font-weight: 700;
  src: url("/assets/fonts/Lato-Bold.woff") format("woff");
}
@font-face {
  font-family: "Lato";
  font-style: italic;
  font-weight: 700;
  src: url("/assets/fonts/Lato-BoldItalic.woff") format("woff");
}
@font-face {
  font-family: "Lato";
  font-weight: 900;
  src: url("/assets/fonts/Lato-Black.woff") format("woff");
}
/* stylelint-disable value-keyword-case */
/* stylelint-enable value-keyword-case */
@font-face {
  font-family: "Soehne";
  font-weight: 400;
  src: url("/assets/fonts/Soehne-Buch.otf") format("opentype");
}
@font-face {
  font-family: "Soehne";
  font-style: italic;
  font-weight: 400;
  src: url("/assets/fonts/Soehne-BuchKursiv.otf") format("opentype");
}
@font-face {
  font-family: "Soehne";
  font-weight: 500;
  src: url("/assets/fonts/Soehne-Kraeftig.otf") format("opentype");
}
@font-face {
  font-family: "Soehne";
  font-weight: 600;
  src: url("/assets/fonts/Soehne-Halbfett.otf") format("opentype");
}
@font-face {
  font-family: "Soehne";
  font-weight: 700;
  src: url("/assets/fonts/Soehne-Dreiviertelfett.otf") format("opentype");
}
/* stylelint-disable value-keyword-case */
/* stylelint-enable value-keyword-case */
@font-face {
  font-family: "Inter";
  font-weight: 400;
  src: url("/assets/fonts/Inter-Regular.woff2") format("woff2");
}
@font-face {
  font-family: "Inter";
  font-weight: 500;
  src: url("/assets/fonts/Inter-Medium.woff2") format("woff2");
}
@font-face {
  font-family: "Inter";
  font-weight: 600;
  src: url("/assets/fonts/Inter-SemiBold.woff2") format("woff2");
}
@font-face {
  font-family: "Inter";
  font-weight: 700;
  src: url("/assets/fonts/Inter-Bold.woff2") format("woff2");
}
/* stylelint-disable value-keyword-case */
/* stylelint-enable value-keyword-case */
@font-face {
  font-family: "Open Sans";
  font-weight: 400;
  src: url("/assets/fonts/Open-Sans-Regular.woff") format("woff");
}
@font-face {
  font-family: "Open Sans";
  font-weight: 500;
  src: url("/assets/fonts/Open-Sans-Medium.woff") format("woff");
}
@font-face {
  font-family: "Open Sans";
  font-weight: 600;
  src: url("/assets/fonts/Open-Sans-SemiBold.woff") format("woff");
}
@font-face {
  font-family: "Open Sans";
  font-weight: 700;
  src: url("/assets/fonts/Open-Sans-Bold.woff") format("woff");
}
body {
  /* stylelint-disable-next-line value-keyword-case */
  font-size: 14px;
  line-height: 1.25em;
  font-family: "Inter", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

@keyframes appear {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes simple-appear {
  from {
    opacity: 0;
    transform: scale(0);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes bounce-highlight {
  from {
    transform: scale(1);
  }
  30% {
    transform: scale(1.2);
  }
  60% {
    transform: scale(0.95);
  }
  to {
    transform: scale(1);
  }
}
@keyframes pulsate {
  from {
    opacity: 1;
  }
  60% {
    opacity: 0.5;
  }
  to {
    opacity: 1;
  }
}
@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@keyframes group-dropdown-show {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes group-dropdown-hide {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes bubble-appear {
  from {
    transform: scale(0);
  }
  30% {
    transform: scale(1.1);
  }
  55% {
    transform: scale(0.98);
  }
  75% {
    transform: scale(1.01);
  }
  to {
    transform: scale(1);
  }
}
@keyframes logoLoader {
  from {
    opacity: 0.5;
    transform: scale(0.995, 0.995);
  }
  50% {
    opacity: 0.95;
    transform: scale(1, 1);
  }
  to {
    opacity: 0.5;
    transform: scale(0.995, 0.995);
  }
}
@keyframes contentPlaceholderBackgroundShimmer {
  from {
    background-position: -400px 0;
  }
  to {
    background-position: 400px 0;
  }
}
@keyframes shimmer {
  100% {
    transform: translateX(100%);
  }
}
@keyframes drop-fade-below {
  0% {
    opacity: 0;
    transform: translateY(-7px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes drop-fade-above {
  0% {
    opacity: 0;
    transform: translateY(7px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.scroll-area {
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  position: absolute;
  /* Scroll momentum on touch devices */
  /* stylelint-disable-next-line property-no-unknown */
  -webkit-overflow-scrolling: touch;
  overflow-scrolling: touch;
  overflow-x: hidden;
  overflow-y: scroll;
  z-index: 0;
}
.scroll-area__flex-content {
  display: flex;
  flex: 100 0 auto;
  flex-direction: column;
  min-height: 100%;
}

.note {
  background-color: #fffeed;
  border: 1px solid #e2db6b;
  border-radius: 3px;
  color: #596976;
  padding: 20px;
}
.note--compact {
  font-size: 15px;
  padding: 15px;
}
.note__header {
  color: #f5a623;
  margin-bottom: 8px;
}

.notification-icon {
  animation: bounce-highlight 0.5s ease-out;
  flex-shrink: 0;
}

.table {
  border: none;
  border-collapse: separate;
  border-spacing: 0;
  color: #596976;
  text-align: left;
  width: 100%;
}
.table__wrapper {
  border-left: 1px solid #e6eaec;
  border-radius: 3px;
  border-right: 1px solid #e6eaec;
}
.table__wrapper-no-header {
  border-top: 1px solid #e6eaec;
}
.table--users tbody tr {
  height: 62px;
}
.table--fixed:not(.table--empty) {
  table-layout: fixed;
}
.table--top-aligned-cells .table__cell {
  vertical-align: top;
}
.table__head .table__row .table__header:first-child {
  border-top-left-radius: 3px;
}
.table__head .table__row .table__header:last-child {
  border-top-right-radius: 3px;
}
.table__row.highlight--warning {
  background-color: #fffeed;
}
.table__row .expandable-content-toggle-cell {
  display: block;
}
.table__row .expandable-content-toggle-cell:hover .expandable-content-toggle-icon {
  color: #073572;
}
.table__row--expandable {
  cursor: pointer;
}
.table__row--expanded .table__cell {
  border-bottom: none;
}
.table__row:has(.f-table-cell-row-checkbox.platform-checkbox-checked){
  --tw-bg-opacity: 1;
  background-color: rgb(247 249 252 / var(--tw-bg-opacity, 1));
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.table__row:has(.f-table-cell-row-checkbox.platform-checkbox-checked) td{
  --tw-bg-opacity: 1;
  background-color: rgb(247 249 252 / var(--tw-bg-opacity, 1));
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.table__row--clickable:hover .table__cell:not(.table__cell--loading) {
  cursor: pointer;
}
.table__cell, .table__header {
  border-bottom: 1px solid #E8ECF1;
  height: 40px;
  padding: 13px 10px;
  vertical-align: middle;
}
.table__cell:first-child, .table__header:first-child {
  padding-left: 15px;
}
.table__cell:last-child, .table__header:last-child {
  padding-right: 15px;
}
.table__cell.width--min, .table__header.width--min {
  white-space: nowrap;
  width: 1%;
}
.table__cell.width--1-eighths, .table__header.width--1-eighths {
  width: 12.5%;
}
.table__cell.width--2-eighths, .table__header.width--2-eighths {
  width: 25%;
}
.table__cell.width--3-eighths, .table__header.width--3-eighths {
  width: 37.5%;
}
.table__cell.width--4-eighths, .table__header.width--4-eighths {
  width: 50%;
}
.table__cell.width--5-eighths, .table__header.width--5-eighths {
  width: 62.5%;
}
.table__cell.width--6-eighths, .table__header.width--6-eighths {
  width: 75%;
}
.table__cell.width--7-eighths, .table__header.width--7-eighths {
  width: 87.5%;
}
.table__cell.width--8-eighths, .table__header.width--8-eighths {
  width: 100%;
}
.table__cell.width--1-tenths, .table__header.width--1-tenths {
  width: 10%;
}
.table__cell.width--2-tenths, .table__header.width--2-tenths {
  width: 20%;
}
.table__cell.width--3-tenths, .table__header.width--3-tenths {
  width: 30%;
}
.table__cell.width--4-tenths, .table__header.width--4-tenths {
  width: 40%;
}
.table__cell.width--5-tenths, .table__header.width--5-tenths {
  width: 50%;
}
.table__cell.width--6-tenths, .table__header.width--6-tenths {
  width: 60%;
}
.table__cell.width--7-tenths, .table__header.width--7-tenths {
  width: 70%;
}
.table__cell.width--8-tenths, .table__header.width--8-tenths {
  width: 80%;
}
.table__cell.width--9-tenths, .table__header.width--9-tenths {
  width: 90%;
}
.table__cell.width--10-tenths, .table__header.width--10-tenths {
  width: 100%;
}
.table__cell.width--1-twelfths, .table__header.width--1-twelfths {
  width: calc(1 * 1 / 12 * 100%);
}
.table__cell.width--2-twelfths, .table__header.width--2-twelfths {
  width: calc(2 * 1 / 12 * 100%);
}
.table__cell.width--3-twelfths, .table__header.width--3-twelfths {
  width: calc(3 * 1 / 12 * 100%);
}
.table__cell.width--4-twelfths, .table__header.width--4-twelfths {
  width: calc(4 * 1 / 12 * 100%);
}
.table__cell.width--5-twelfths, .table__header.width--5-twelfths {
  width: calc(5 * 1 / 12 * 100%);
}
.table__cell.width--6-twelfths, .table__header.width--6-twelfths {
  width: calc(6 * 1 / 12 * 100%);
}
.table__cell.width--7-twelfths, .table__header.width--7-twelfths {
  width: calc(7 * 1 / 12 * 100%);
}
.table__cell.width--8-twelfths, .table__header.width--8-twelfths {
  width: calc(8 * 1 / 12 * 100%);
}
.table__cell.width--9-twelfths, .table__header.width--9-twelfths {
  width: calc(9 * 1 / 12 * 100%);
}
.table__cell.width--10-twelfths, .table__header.width--10-twelfths {
  width: calc(10 * 1 / 12 * 100%);
}
.table__cell.width--11-twelfths, .table__header.width--11-twelfths {
  width: calc(11 * 1 / 12 * 100%);
}
.table__cell.width--12-twelfths, .table__header.width--12-twelfths {
  width: calc(12 * 1 / 12 * 100%);
}
.table__cell.width--1-sixteenths, .table__header.width--1-sixteenths {
  width: calc(1 * 1 / 16 * 100%);
}
.table__cell.width--2-sixteenths, .table__header.width--2-sixteenths {
  width: calc(2 * 1 / 16 * 100%);
}
.table__cell.width--3-sixteenths, .table__header.width--3-sixteenths {
  width: calc(3 * 1 / 16 * 100%);
}
.table__cell.width--4-sixteenths, .table__header.width--4-sixteenths {
  width: calc(4 * 1 / 16 * 100%);
}
.table__cell.width--5-sixteenths, .table__header.width--5-sixteenths {
  width: calc(5 * 1 / 16 * 100%);
}
.table__cell.width--6-sixteenths, .table__header.width--6-sixteenths {
  width: calc(6 * 1 / 16 * 100%);
}
.table__cell.width--7-sixteenths, .table__header.width--7-sixteenths {
  width: calc(7 * 1 / 16 * 100%);
}
.table__cell.width--8-sixteenths, .table__header.width--8-sixteenths {
  width: calc(8 * 1 / 16 * 100%);
}
.table__cell.width--9-sixteenths, .table__header.width--9-sixteenths {
  width: calc(9 * 1 / 16 * 100%);
}
.table__cell.width--10-sixteenths, .table__header.width--10-sixteenths {
  width: calc(10 * 1 / 16 * 100%);
}
.table__cell.width--11-sixteenths, .table__header.width--11-sixteenths {
  width: calc(11 * 1 / 16 * 100%);
}
.table__cell.width--12-sixteenths, .table__header.width--12-sixteenths {
  width: calc(12 * 1 / 16 * 100%);
}
.table__cell.width--13-sixteenths, .table__header.width--13-sixteenths {
  width: calc(13 * 1 / 16 * 100%);
}
.table__cell.width--14-sixteenths, .table__header.width--14-sixteenths {
  width: calc(14 * 1 / 16 * 100%);
}
.table__cell.width--15-sixteenths, .table__header.width--15-sixteenths {
  width: calc(15 * 1 / 16 * 100%);
}
.table__cell.width--16-sixteenths, .table__header.width--16-sixteenths {
  width: calc(16 * 1 / 16 * 100%);
}
.table__cell .expandable-content-toggle-icon, .table__header .expandable-content-toggle-icon {
  width: 33px;
  height: 33px;
  align-items: center;
  color: #596976;
  display: flex;
  justify-content: center;
  margin: 0;
  padding: 0;
}
.table__cell--checkbox-container, .table__header--checkbox-container {
  padding: 0 !important;
}
.table__checkbox {
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
  padding: 0 15px;
  transition: background 200ms ease;
  width: auto;
}
.table__checkbox:hover {
  background-color: #f2f2f2;
}
.table__checkbox--with-dropdown {
  pointer-events: none;
}
.table__checkbox-dropdown {
  align-items: center;
  display: flex;
  height: 100%;
  padding: 0 10px;
  transition: background 200ms ease;
}
.table__checkbox-dropdown:hover {
  background-color: #f7f7f7;
}
.table__checkbox-dropdown-button {
  display: block;
  padding: 10px;
  text-align: left;
  width: 100%;
}
.table__checkbox-dropdown-button:not(.table__checkbox-dropdown-button--disabled):hover {
  background-color: #5897fb;
  color: #fff;
}
.table__checkbox-dropdown-button--disabled {
  color: #b7b7b7;
  cursor: default;
}
.table__checkbox-dropdown-options {
  border-radius: 4px;
  overflow: hidden;
}
.table__header {
  background-color: #fafcfc;
  border-top: 1px solid #e6eaec;
  color: #8c9eab;
  font-size: 11px;
  font-weight: bold;
  line-height: 1.2em;
  padding: 10px;
  text-transform: uppercase;
}
.table__header--sticky {
  position: sticky !important;
  top: 0;
  z-index: 3;
}
.table__header .with-items {
  align-items: center;
  display: flex;
  flex-flow: row nowrap;
}
.table__header .with-items .title {
  flex: 1;
  padding-right: 5px;
}
.table__header-checkbox-dropdown-icon {
  right: 8px;
  position: relative;
}

.table-mobile__checkboxes-container {
  display: flex;
  flex-wrap: wrap;
}
.table-mobile__checkbox {
  margin-left: 5px;
}
.table-mobile__checkbox-container {
  align-items: center;
  display: flex;
  flex: 1;
  margin: 10px 0;
  padding-left: 0;
  text-align: center;
}
.tooltip[aria-label] {
  font-weight: normal;
  position: relative;
  text-transform: initial;
}
.tooltip[aria-label]::before {
  background: #617281;
  border: 1px solid #6c7e8f;
  border-radius: 4px;
  box-shadow: none;
  color: #fff;
  line-height: 1.4;
  padding: 4px 7px !important;
  text-align: center;
  z-index: 2000;
  bottom: 0;
  content: attr(aria-label);
  opacity: 0;
  font-size: 14px;
  padding: 16px !important;
  position: absolute;
  transform: translateY(100%);
  white-space: pre;
}
.tooltip[aria-label].text-align-left::before {
  text-align: left;
}
.tooltip[aria-label].fixed-width::before {
  white-space: normal;
  width: 228px;
  word-wrap: break-word;
}
.tooltip[aria-label]::after {
  background: #617281;
  border-right: 1px solid #6c7e8f;
  border-top: 1px solid #6c7e8f;
  bottom: -4.5px;
  content: "";
  height: 9px;
  margin: auto;
  opacity: 0;
  transform: rotate(-45deg);
  width: 9px;
  z-index: 2000;
}
.tooltip[aria-label]::after, .tooltip[aria-label]::before {
  position: absolute;
  transition: 0.2s opacity, 0.2s transform, 0.14s bottom;
  visibility: hidden;
}
.tooltip[aria-label]:hover::before, .tooltip[aria-label]:hover::after {
  opacity: 1;
  transform: translateY(calc(100% + 7px));
  visibility: visible;
}
.tooltip[aria-label]:hover::after {
  bottom: -11.5px;
  transform: rotate(-45deg);
}
.tooltip[aria-label].above::before {
  bottom: auto;
  top: 0;
  transform: translateY(-100%);
}
.tooltip[aria-label].above::after {
  border-bottom: 1px solid #6c7e8f;
  border-left: 1px solid #6c7e8f;
  border-right: 0;
  border-top: 0;
  bottom: auto;
  top: -4.5px;
}
.tooltip[aria-label].above::after, .tooltip[aria-label].above::before {
  transition: 0.2s opacity, 0.2s transform, 0.2s top;
}
.tooltip[aria-label].above:hover::before {
  transform: translateY(calc(-100% - 7px));
}
.tooltip[aria-label].above:hover::after {
  bottom: auto;
  top: -11.5px;
  transform: rotate(-45deg);
}
.tooltip[aria-label].align-left::before {
  left: -5px;
}
.tooltip[aria-label].align-left::after {
  left: 0;
  right: 0;
}
.tooltip[aria-label].align-right::before {
  right: -5px;
}
.tooltip[aria-label].align-right::after {
  left: 0;
  right: 0;
}
.tooltip[aria-label].align-center::before {
  left: 50%;
}
.tooltip[aria-label].align-center:after {
  left: calc(50% - 9px * 0.5);
}
.tooltip[aria-label].align-center.above::before {
  transform: translateY(-100%) translateX(-50%);
}
.tooltip[aria-label].align-center.above:hover::before {
  transform: translateY(calc(-100% - 7px)) translateX(-50%);
}
.tooltip[aria-label][aria-label=""]::before, .tooltip[aria-label][aria-label=""]::after {
  display: none;
}

.animated {
  transition: 0.2s transform;
}

.rotate-180-deg {
  transform: rotate(-180deg);
}

.text-lowercase {
  text-transform: lowercase !important;
}

/* prettier-ignore */
.ember-basic-dropdown {
  position: relative;
}

.ember-basic-dropdown,
.ember-basic-dropdown-content,
.ember-basic-dropdown-content * {
  box-sizing: border-box;
}

.ember-basic-dropdown-content {
  position: absolute;
  width: auto;
  z-index: 1000;
  background-color: #ffffff;
}

.ember-basic-dropdown-content--left {
  left: 0;
}

.ember-basic-dropdown-content--right {
  right: 0;
}

.ember-basic-dropdown-overlay {
  position: fixed;
  background: rgba(0, 0, 0, 0.5);
  width: 100%;
  height: 100%;
  z-index: 10;
  top: 0;
  left: 0;
  pointer-events: none;
}

.ember-basic-dropdown-content-wormhole-origin {
  display: inline;
}

.ember-power-select-dropdown * {
  box-sizing: border-box;
}

.ember-power-select-trigger {
  position: relative;
  border-top: 1px solid #aaaaaa;
  border-bottom: 1px solid #aaaaaa;
  border-right: 1px solid #aaaaaa;
  border-left: 1px solid #aaaaaa;
  border-radius: 4px;
  background-color: #ffffff;
  line-height: 1.75;
  overflow-x: hidden;
  text-overflow: ellipsis;
  min-height: 1.75em;
  -moz-user-select: none;
       user-select: none;
  -webkit-user-select: none;
  color: inherit;
  /* Minimum clearfix for modern browsers */
}
.ember-power-select-trigger:after {
  content: "";
  display: table;
  clear: both;
}
.ember-power-select-trigger .ember-power-select-input {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.ember-power-select-trigger:focus,
.ember-power-select-trigger--active {
  border-top: 1px solid #aaaaaa;
  border-bottom: 1px solid #aaaaaa;
  border-right: 1px solid #aaaaaa;
  border-left: 1px solid #aaaaaa;
  box-shadow: none;
}

.ember-basic-dropdown-trigger--below.ember-power-select-trigger[aria-expanded=true],
.ember-basic-dropdown-trigger--in-place.ember-power-select-trigger[aria-expanded=true] {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.ember-basic-dropdown-trigger--above.ember-power-select-trigger[aria-expanded=true] {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.ember-power-select-placeholder {
  color: #999999;
  display: block;
  overflow-x: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.ember-power-select-status-icon {
  position: absolute;
  display: inline-block;
  width: 0;
  height: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  border-style: solid;
  border-width: 7px 4px 0 4px;
  border-color: #aaaaaa transparent transparent transparent;
}
.ember-basic-dropdown-trigger[aria-expanded=true] .ember-power-select-status-icon {
  transform: rotate(180deg);
}

.ember-power-select-clear-btn {
  position: absolute;
  cursor: pointer;
}

.ember-power-select-multiple-options {
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  list-style: none;
}
.ember-power-select-multiple-options li.ember-power-select-trigger-multiple-input-container {
  flex-grow: 1;
  display: flex;
}
.ember-power-select-multiple-options li.ember-power-select-trigger-multiple-input-container input {
  flex-grow: 1;
}

.ember-power-select-trigger-multiple-input {
  font-family: inherit;
  font-size: inherit;
  border: none;
  line-height: inherit;
  -webkit-appearance: none;
  outline: none;
  padding: 0;
  background-color: transparent;
  text-indent: 2px;
  /* There's a browser bug where this selectos cannot be chained with commas */
}
.ember-power-select-trigger-multiple-input:disabled {
  background-color: #eeeeee;
}
.ember-power-select-trigger-multiple-input::-moz-placeholder {
  opacity: 1;
  color: #999999;
}
.ember-power-select-trigger-multiple-input::placeholder {
  opacity: 1;
  color: #999999;
}
.ember-power-select-trigger-multiple-input::-webkit-input-placeholder {
  opacity: 1;
  color: #999999;
}
.ember-power-select-trigger-multiple-input::-moz-placeholder {
  opacity: 1;
  color: #999999;
}
.ember-power-select-trigger-multiple-input::-ms-input-placeholder {
  opacity: 1;
  color: #999999;
}

.ember-power-select-multiple-option {
  border: 1px solid gray;
  border-radius: 4px;
  color: #333333;
  background-color: #e4e4e4;
  padding: 0 4px;
  line-height: 1.45;
  margin: 2px 0 2px 3px;
}

.ember-power-select-multiple-remove-btn {
  cursor: pointer;
}
.ember-power-select-multiple-remove-btn:not(:hover) {
  opacity: 0.5;
}

.ember-power-select-search {
  padding: 4px;
}

.ember-power-select-search-input {
  border: 1px solid #aaaaaa;
  border-radius: 0;
  width: 100%;
  font-size: inherit;
  line-height: inherit;
  padding: 0 5px;
}
.ember-power-select-search-input:focus {
  border: 1px solid #aaaaaa;
  box-shadow: none;
}

.ember-power-select-search-input-field {
  width: 100%;
  height: 100%;
  padding: 0 8px;
  font-family: inherit;
  font-size: inherit;
  border: none;
  display: block;
  line-height: inherit;
  -webkit-appearance: none;
  outline: none;
  background-color: transparent;
}

.ember-power-select-dropdown {
  border-left: 1px solid #aaaaaa;
  border-right: 1px solid #aaaaaa;
  line-height: 1.75;
  border-radius: 4px;
  box-shadow: none;
  overflow: hidden;
  color: inherit;
}

.ember-power-select-dropdown.ember-basic-dropdown-content--above {
  border-top: 1px solid #aaaaaa;
  border-bottom: none;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.ember-power-select-dropdown.ember-basic-dropdown-content--below,
.ember-power-select-dropdown.ember-basic-dropdown-content--in-place {
  border-top: none;
  border-bottom: 1px solid #aaaaaa;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.ember-power-select-dropdown.ember-basic-dropdown-content--in-place {
  width: 100%;
}

.ember-power-select-options {
  list-style: none;
  margin: 0;
  padding: 0;
  -moz-user-select: none;
       user-select: none;
  -webkit-user-select: none;
}
.ember-power-select-options[role=listbox] {
  overflow-y: auto; /* in firefox in windows this can cause a word-break issue. Try `overflow-y: scroll` if that happens */
  -webkit-overflow-scrolling: touch;
  max-height: 12.25em;
}

.ember-power-select-option {
  cursor: pointer;
  padding: 0 8px;
}

.ember-power-select-group[aria-disabled=true] {
  color: #999999;
  cursor: not-allowed;
}

.ember-power-select-group[aria-disabled=true] .ember-power-select-option,
.ember-power-select-option[aria-disabled=true] {
  color: #999999;
  pointer-events: none;
  cursor: not-allowed;
}

.ember-power-select-option[aria-selected=true] {
  background-color: #dddddd;
}

.ember-power-select-option[aria-current=true] {
  background-color: #5897fb;
  color: #ffffff;
}

.ember-power-select-group-name {
  cursor: default;
  font-weight: bold;
}

.ember-power-select-trigger[aria-disabled=true] {
  background-color: #eeeeee;
}

.ember-power-select-trigger {
  padding: 0 16px 0 0;
}

.ember-power-select-selected-item,
.ember-power-select-placeholder {
  margin-left: 8px;
}

.ember-power-select-status-icon {
  right: 5px;
}

.ember-power-select-clear-btn {
  right: 25px;
}

.ember-power-select-group .ember-power-select-group .ember-power-select-group-name {
  padding-left: 24px;
}
.ember-power-select-group .ember-power-select-group .ember-power-select-option {
  padding-left: 40px;
}
.ember-power-select-group .ember-power-select-option {
  padding-left: 24px;
}
.ember-power-select-group .ember-power-select-group-name {
  padding-left: 8px;
}

.ember-power-select-trigger[dir=rtl] {
  padding: 0 0 0 16px;
}
.ember-power-select-trigger[dir=rtl] .ember-power-select-selected-item,
.ember-power-select-trigger[dir=rtl] .ember-power-select-placeholder {
  margin-right: 8px;
}
.ember-power-select-trigger[dir=rtl] .ember-power-select-multiple-option {
  float: right;
}
.ember-power-select-trigger[dir=rtl] .ember-power-select-trigger-multiple-input {
  float: right;
}
.ember-power-select-trigger[dir=rtl] .ember-power-select-status-icon {
  left: 5px;
  right: initial;
}
.ember-power-select-trigger[dir=rtl] .ember-power-select-clear-btn {
  left: 25px;
  right: initial;
}

.ember-power-select-visually-hidden {
  height: 1px;
  left: -9999px;
  overflow: hidden;
  position: absolute;
  width: 1px;
}

.ember-power-select-dropdown[dir=rtl] .ember-power-select-group .ember-power-select-group .ember-power-select-group-name {
  padding-right: 24px;
}
.ember-power-select-dropdown[dir=rtl] .ember-power-select-group .ember-power-select-group .ember-power-select-option {
  padding-right: 40px;
}
.ember-power-select-dropdown[dir=rtl] .ember-power-select-group .ember-power-select-option {
  padding-right: 24px;
}
.ember-power-select-dropdown[dir=rtl] .ember-power-select-group .ember-power-select-group-name {
  padding-right: 8px;
}

.ember-power-calendar {
  box-sizing: border-box;
  position: relative;
  font-size: 14px;
  line-height: 1.4286;
}

.ember-power-calendar-nav {
  box-sizing: border-box;
  display: flex;
  justify-content: space-between;
  line-height: 2;
}

.ember-power-calendar-nav * {
  box-sizing: border-box;
}

.ember-power-calendar-days,
.ember-power-calendar-days * {
  box-sizing: border-box;
}

.ember-power-calendar-nav-title {
  flex: 1;
  text-align: center;
}

.ember-power-calendar-row {
  display: flex;
  justify-content: space-between;
}

.ember-power-calendar-weekday {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  flex: 1 1 100%;
  background-color: transparent;
  background-color: initial;
  border: none;
  border: initial;
  outline: none;
  outline: initial;
  justify-content: center;
  display: flex;
  align-items: center;
  padding: 0;
}

.ember-power-calendar-day {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-color: transparent;
  background-color: initial;
  border: none;
  border: initial;
  outline: none;
  outline: initial;
  flex: 1 1 100%;
  font-size: inherit;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.ember-power-calendar-nav-control {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-color: transparent;
  background-color: initial;
  border: none;
  border: initial;
  outline: none;
  outline: initial;
  line-height: 1;
  font-size: 150%;
}
.ember-power-calendar-nav-control:focus {
  transform: scale(1.2);
}

.ember-power-calendar-day--selected,
.ember-power-calendar-day--selected:not([disabled]):hover {
  font-weight: bold;
}

.ember-power-calendar-day--interactive[disabled] {
  opacity: 0.4;
}

.ember-power-calendar {
  width: calc(calc(30px + 2px) * 7 - 2px + 0px + 0px);
  width: 100%;
  padding: 0.5rem;
  font-family: Inter, sans-serif;
}
.ember-power-calendar .ember-power-calendar-week:first-child[data-missing-days="1"] {
  padding-left: calc(calc(30px + 2px) * 1);
}
.ember-power-calendar .ember-power-calendar-week:first-child[data-missing-days="2"] {
  padding-left: calc(calc(30px + 2px) * 2);
}
.ember-power-calendar .ember-power-calendar-week:first-child[data-missing-days="3"] {
  padding-left: calc(calc(30px + 2px) * 3);
}
.ember-power-calendar .ember-power-calendar-week:first-child[data-missing-days="4"] {
  padding-left: calc(calc(30px + 2px) * 4);
}
.ember-power-calendar .ember-power-calendar-week:first-child[data-missing-days="5"] {
  padding-left: calc(calc(30px + 2px) * 5);
}
.ember-power-calendar .ember-power-calendar-week:first-child[data-missing-days="6"] {
  padding-left: calc(calc(30px + 2px) * 6);
}
.ember-power-calendar .ember-power-calendar-week:last-child[data-missing-days="1"] {
  padding-right: calc(calc(30px + 2px) * 1);
}
.ember-power-calendar .ember-power-calendar-week:last-child[data-missing-days="2"] {
  padding-right: calc(calc(30px + 2px) * 2);
}
.ember-power-calendar .ember-power-calendar-week:last-child[data-missing-days="3"] {
  padding-right: calc(calc(30px + 2px) * 3);
}
.ember-power-calendar .ember-power-calendar-week:last-child[data-missing-days="4"] {
  padding-right: calc(calc(30px + 2px) * 4);
}
.ember-power-calendar .ember-power-calendar-week:last-child[data-missing-days="5"] {
  padding-right: calc(calc(30px + 2px) * 5);
}
.ember-power-calendar .ember-power-calendar-week:last-child[data-missing-days="6"] {
  padding-right: calc(calc(30px + 2px) * 6);
}
.ember-power-calendar .ember-power-calendar-day,
.ember-power-calendar .ember-power-calendar-weekday {
  max-width: 30px;
  max-height: 30px;
  width: 30px;
  height: 30px;
}
.ember-power-calendar .ember-power-calendar-weekdays,
.ember-power-calendar .ember-power-calendar-week {
  height: calc(30px + 2px);
  padding-left: 0px;
  padding-right: 0px;
}
.ember-power-calendar .ember-power-calendar-day {
  color: #bbb;
}
.ember-power-calendar .ember-power-calendar-weekdays {
  color: #333333;
}
.ember-power-calendar .ember-power-calendar-nav-control {
  color: #0078c9;
}
.ember-power-calendar .ember-power-calendar-nav-control:focus {
  color: #30acff;
}
.ember-power-calendar .ember-power-calendar-day--current-month {
  color: #656d78;
  background-color: #f5f7fa;
}
.ember-power-calendar .ember-power-calendar-day--today {
  background-color: #eee;
}
.ember-power-calendar .ember-power-calendar-day:not([disabled]):hover {
  background-color: #eee;
}
.ember-power-calendar .ember-power-calendar-day--focused {
  box-shadow: inset 0 -2px 0 0 #0078c9;
}
.ember-power-calendar .ember-power-calendar-day--selected.ember-power-calendar-day--range-start {
  background-color: #96d5ff;
}
.ember-power-calendar .ember-power-calendar-day--selected.ember-power-calendar-day--range-start:hover {
  background-color: #96d5ff;
}
.ember-power-calendar .ember-power-calendar-day--selected.ember-power-calendar-day--range-end {
  background-color: #96d5ff;
}
.ember-power-calendar .ember-power-calendar-day--selected.ember-power-calendar-day--range-end:hover {
  background-color: #96d5ff;
}
.ember-power-calendar .ember-power-calendar-day--selected {
  background-color: #c9e9ff;
  color: #656d78;
}
.ember-power-calendar .ember-power-calendar-day--selected:not([disabled]):hover {
  background-color: #c9e9ff;
  color: #656d78;
}
.ember-power-calendar .ember-power-calendar-day--other-month:not([disabled]):hover {
  color: #656d78;
}

.ember-power-calendar-nav{
  margin-bottom: 1rem;
  height: 1.5rem;
  padding-left: 0.25rem;
  padding-right: 0.25rem;
  font-weight: 700;
  line-height: 2.25rem;
}

.ember-power-calendar-nav-control{
  transform: none !important;
  font-size: 1.5rem !important;
  line-height: 2rem !important;
  --tw-text-opacity: 1 !important;
  color: rgb(77 86 102 / var(--tw-text-opacity, 1)) !important;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke !important;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1) !important;
  transition-duration: 150ms !important;
}

.ember-power-calendar-nav-control:hover{
  --tw-text-opacity: 1 !important;
  color: rgb(7 53 114 / var(--tw-text-opacity, 1)) !important;
}

.ember-power-calendar-nav-control:focus{
  --tw-text-opacity: 1 !important;
  color: rgb(77 86 102 / var(--tw-text-opacity, 1)) !important;
}

.ember-power-calendar-nav-control:hover:focus{
  --tw-text-opacity: 1 !important;
  color: rgb(7 53 114 / var(--tw-text-opacity, 1)) !important;
}

.ember-power-calendar-nav-title{
  font-family: Soehne, sans-serif;
}

.ember-power-calendar-weekdays{
  white-space: nowrap !important;
  padding-left: 0.125rem !important;
  padding-right: 0.125rem !important;
}

.ember-power-calendar-weekday{
  font-family: Soehne, sans-serif;
  font-weight: 700;
}

.ember-power-calendar-day{
  margin: 0.125rem !important;
  height: 1.75rem !important;
  width: 1.75rem !important;
  max-width: none !important;
  border-radius: 5px !important;
  --tw-bg-opacity: 1 !important;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1)) !important;
  font-size: 0.875rem !important;
  line-height: 1.25rem !important;
  --tw-text-opacity: 1 !important;
  color: rgb(77 86 102 / var(--tw-text-opacity, 1)) !important;
  --tw-shadow: 0 0 #0000 !important;
  --tw-shadow-colored: 0 0 #0000 !important;
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important;
}

.ember-power-calendar-day:hover{
  --tw-bg-opacity: 1 !important;
  background-color: rgb(219 238 255 / var(--tw-bg-opacity, 1)) !important;
}

.ember-power-calendar-day:disabled{
  --tw-text-opacity: 1 !important;
  color: rgb(155 166 185 / var(--tw-text-opacity, 1)) !important;
  opacity: 1 !important;
}

.ember-power-calendar-day:hover:disabled{
  --tw-bg-opacity: 1 !important;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1)) !important;
}
.ember-power-calendar-day--selected{
  --tw-bg-opacity: 1 !important;
  background-color: rgb(7 53 114 / var(--tw-bg-opacity, 1)) !important;
  font-weight: 400 !important;
  --tw-text-opacity: 1 !important;
  color: rgb(255 255 255 / var(--tw-text-opacity, 1)) !important;
}
.ember-power-calendar-day--selected:hover{
  --tw-bg-opacity: 1 !important;
  background-color: rgb(7 53 114 / var(--tw-bg-opacity, 1)) !important;
  font-weight: 400 !important;
}
.ember-power-calendar-day--selected:disabled{
  --tw-bg-opacity: 1 !important;
  background-color: rgb(219 238 255 / var(--tw-bg-opacity, 1)) !important;
  --tw-text-opacity: 1 !important;
  color: rgb(77 86 102 / var(--tw-text-opacity, 1)) !important;
}
.ember-power-calendar-day--selected:hover:disabled{
  --tw-bg-opacity: 1 !important;
  background-color: rgb(219 238 255 / var(--tw-bg-opacity, 1)) !important;
}
.ember-power-calendar-day--other-month{
  --tw-text-opacity: 1 !important;
  color: rgb(155 166 185 / var(--tw-text-opacity, 1)) !important;
}

.ember-basic-dropdown-content--above .ember-power-calendar {
  border-bottom: none;
}

.ember-basic-dropdown-content--below .ember-power-calendar {
  border-top: none;
}

.content-box, .content-box--note {
  border-radius: 5px;
  box-shadow: 0 0 15px rgba(183, 183, 183, 0.75);
  padding: 20px;
}

.ember-modal-dialog {
  z-index: 51;
  position: fixed;
}

.ember-modal-dialog.emd-in-place {
  position: static;
}

.ember-modal-wrapper.emd-static.emd-wrapper-target-attachment-center .ember-modal-dialog {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.ember-modal-wrapper.emd-animatable.emd-wrapper-target-attachment-center {
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ember-modal-wrapper.emd-animatable.emd-wrapper-target-attachment-center .ember-modal-overlay {
  display: flex;
  align-items: center;
  justify-content: center;
}

.ember-modal-wrapper.emd-animatable .ember-modal-dialog {
  position: relative;
}

.ember-modal-overlay {
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 50;
}

.ember-modal-dialog {
  border-radius: 8px;
  background-color: #fff;
  box-shadow: 0 0 10px #222;
  padding: 10px;
}

.ember-modal-overlay.translucent {
  background-color: rgba(128, 128, 128, 0.77);
}

/* prettier-ignore */
.ember-basic-dropdown-trigger[aria-invalid] {
  border-color: #f16c6c;
}
.ember-basic-dropdown-trigger[aria-invalid] .ember-power-select-placeholder {
  color: #f8b2b2;
}

body{
  --tw-bg-opacity: 1;
  background-color: rgb(240 242 245 / var(--tw-bg-opacity, 1));
  color: #404b55;
  overscroll-behavior: none;
}

section {
  margin-bottom: 20px;
}

a {
  color: #073572;
  cursor: pointer;
  text-decoration: none;
  transition: color 0.2s ease;
}
a:hover, a:active {
  color: #2274b4;
}
a:visited > .icon {
  color: inherit;
}
a.disabled {
  color: #b7b7b7;
  cursor: not-allowed;
}
a.secondary {
  color: #b7b7b7;
}
a.alert {
  color: #ef5555;
}
a.external-link::after {
  content: "\f08e";
  font-size: 0.75em;
}

button,
select,
input,
.search-input,
.fake-select,
.ember-power-select-trigger {
  margin-right: 8px;
}
button:last-child,
select:last-child,
input:last-child,
.search-input:last-child,
.fake-select:last-child,
.ember-power-select-trigger:last-child {
  margin-right: 0;
}
button[aria-disabled=true],
select[aria-disabled=true],
input[aria-disabled=true],
.search-input[aria-disabled=true],
.fake-select[aria-disabled=true],
.ember-power-select-trigger[aria-disabled=true] {
  background: #f7f7f7;
  color: #8c9eab;
  cursor: default;
}
button[aria-disabled=true] .ember-power-select-status-icon,
select[aria-disabled=true] .ember-power-select-status-icon,
input[aria-disabled=true] .ember-power-select-status-icon,
.search-input[aria-disabled=true] .ember-power-select-status-icon,
.fake-select[aria-disabled=true] .ember-power-select-status-icon,
.ember-power-select-trigger[aria-disabled=true] .ember-power-select-status-icon {
  border-top-color: #b7b7b7;
}

select,
input,
.search-input,
.fake-select,
.ember-power-select-trigger {
  background-color: #fff;
  transition: box-shadow 0.15s ease, border-color 0.15s ease-in;
}
select:focus,
input:focus,
.search-input:focus,
.fake-select:focus,
.ember-power-select-trigger:focus {
  box-shadow: 0 0 8px rgba(230, 234, 236, 0.9);
}

select,
.fake-select {
  border: 1px solid #b7b7b7;
  border-radius: 5px;
  color: #404b55;
  cursor: pointer;
  font: inherit;
  height: 40px;
  outline: 0;
  padding: 0.5em;
}
select::-moz-placeholder, .fake-select::-moz-placeholder {
  color: #b7b7b7;
}
select::placeholder,
.fake-select::placeholder {
  color: #b7b7b7;
}

.fake-select {
  position: relative;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.fake-select::after {
  border-color: #073572 transparent transparent transparent;
  border-style: solid;
  border-width: 5px 5px 0;
  content: " ";
  height: 0;
  margin-right: 0.5em;
  margin-top: -2.5px;
  position: absolute;
  right: 0;
  top: 50%;
  width: 0;
}

input:not([type=checkbox]),
textarea {
  height: 40px;
}

input,
textarea {
  border: 1px solid #b7b7b7;
  border-radius: 5px;
  color: #404b55;
  font: inherit;
  outline: 0;
  padding: 12px;
}
input.disabled, input[disabled],
textarea.disabled,
textarea[disabled] {
  background-color: #f7f7f7;
  color: #8c9eab;
  -webkit-text-fill-color: #8c9eab;
}
input::-moz-placeholder, textarea::-moz-placeholder {
  color: #b7b7b7;
}
input::placeholder,
textarea::placeholder {
  color: #b7b7b7;
}
input:focus,
textarea:focus {
  border: 1px solid rgba(7, 53, 114, 0.7);
  box-shadow: none;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  opacity: 1;
}

.field-label {
  color: #8c9eab;
  font-size: 12px;
  font-weight: bold;
  margin-bottom: 2px;
  text-transform: uppercase;
}

.action-icon {
  color: #767676;
  transition: color 0.15s ease-in;
}
.action-icon:hover {
  color: #073572;
}

.page-hero {
  background-image: linear-gradient(15deg, rgb(135, 97, 218) 0%, rgb(46, 177, 221) 85%, rgb(46, 177, 221) 100%);
  color: #fff;
  height: 145px;
  padding: 35px 50px;
}
@media screen and (max-width: 0) {
  .page-hero {
    padding: 40px 25px;
  }
}
.page-hero--light {
  border-bottom: 1px solid #e6eaec;
  color: #404b55;
  margin: 0 50px 30px;
  padding-bottom: 20px;
  padding-top: 42px;
}
@media screen and (max-width: 0) {
  .page-hero--light {
    padding: 20px 25px;
  }
}
.page-hero--light + .page-content-wrapper {
  padding-top: 0;
}

.page-hero,
.page-hero--light {
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.page-hero-title {
  display: flex;
  font-size: 2.15em;
  font-weight: 600;
  justify-content: space-between;
  line-height: 1.25em;
  padding-right: 3px;
  width: 100%;
}

.page-hero-subtitle {
  font-size: 1.25em;
  font-weight: 300;
  line-height: 1.25em;
  margin-top: 5px;
  width: 100%;
}

.page-content-wrapper {
  max-width: 100%;
  padding: 30px 50px 30px;
}
@media screen and (max-width: 0) {
  .page-content-wrapper {
    padding: 15px 25px 30px;
  }
}

h1,
h2,
h3,
h4,
h5,
h6 {
  display: block;
  font-weight: bold;
  line-height: 1.25em;
  margin-bottom: 0.125em;
}

p {
  line-height: 1.4;
  padding-bottom: 1em;
}

h1 {
  font-size: 2.15em;
}

h2 {
  font-size: 1.25em;
}

h3 {
  font-size: 1.125em;
}

h4 {
  font-size: 1.1125em;
}

h5 {
  font-size: 1em;
}

h6 {
  font-size: 1em;
}

a,
span {
  font-size: 1em;
  line-height: 1.25em;
}

.subtitle {
  font-size: 24px;
  font-weight: bold;
}

.secondary-text,
.text-muted {
  color: #b7b7b7;
}

.text-italic {
  font-style: italic;
}

.alert-text,
.alert {
  color: #ef5555;
}

.text-capitalize {
  text-transform: capitalize !important;
}

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

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

.text-nowrap {
  white-space: nowrap;
}

.text-uppercase {
  text-transform: uppercase;
}

.full-width {
  width: 100%;
}

strong {
  font-weight: bold;
}

hr {
  border-color: #e4e4e4;
  border-style: solid;
}

.hidden {
  display: none;
}

.font-s {
  font-size: 12px;
}

.font-sm {
  font-size: 14px;
}

.content-box--note {
  background: #fddd9b;
  box-shadow: none;
}

.text-primary {
  color: #073572;
}

.text-danger {
  color: #da595b;
}

.info-flex-section {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  margin-bottom: 10px;
  margin-left: -5px;
  margin-right: -5px;
  max-width: 100%;
}
.info-flex-section:last-child {
  margin-bottom: -20px;
}
.info-flex-section .item-title {
  font-size: 1em;
  font-weight: bold;
  line-height: 1.6em;
}
.info-flex-section .item-value {
  font-size: 14px;
  line-height: 1.6em;
  word-break: break-all;
}
.info-flex-section .item-value--social-icon {
  font-size: 16px;
  margin-left: 2px;
}
.info-flex-section .item-value--social-icon:first-child a > span {
  margin-left: 0;
}
.info-flex-section .item-value--social-icon .icon-fa-twitter {
  font-size: 18px;
  top: 1px;
}
.info-flex-section .wrapping-flex-item {
  flex: 0 0 50%;
  margin-bottom: 10px;
}
.info-flex-section .wrapping-flex-item--full-width {
  flex: 0 0 100%;
}
.info-flex-section .wrapping-flex-item-content {
  display: flex;
  flex-direction: column;
  padding: 2px 5px;
}

.empty-table-placeholder {
  color: #767676;
  font-size: 14px;
  line-height: 1.35;
  text-align: center;
}

@font-face {
  font-family: "Leadfeeder";
  src: url("/assets/fonts/Leadfeeder.woff") format("woff");
}
.icon {
  /* No need for generic font-family as it's icon font */
  /* stylelint-disable-next-line font-family-no-missing-generic-family-keyword */
  font-family: "Leadfeeder";
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  line-height: 1;
  speak: none;
  text-transform: none;
}
.icon--circled::before, .icon-info::before, .icon-exclamation::before, .icon-question::before {
  border: 2px solid #073572;
  border-radius: 50%;
  height: 1.5em;
  margin-top: -2px;
  width: 1.5em;
}
.icon--circled::after, .icon-info::after, .icon-exclamation::after, .icon-question::after {
  left: 1px;
  position: relative;
}
.icon-info, .icon-exclamation, .icon-question {
  color: #073572;
  display: inline-block;
  margin-right: 6px;
  text-align: center;
  width: 1.35em;
}
.icon-info::after, .icon-exclamation::after, .icon-question::after {
  content: "i";
}
.icon-question::after {
  content: "?";
}
.icon-exclamation::after {
  content: "!";
}
.icon-check::before {
  margin-top: 0;
}
.icon-check::after {
  content: "\f00c";
  /* No need for generic font-family as it's icon font */
  /* stylelint-disable-next-line font-family-no-missing-generic-family-keyword */
  font-family: "fontawesome";
  font-size: 0.6em;
}
.icon--white {
  color: #fff;
}
.icon--white::before {
  border-color: #fff;
}

.icon-calendar::before {
  content: "\e900";
  position: relative;
  top: -0.05em;
}

.icon-close::before {
  content: "\e901";
}

.icon-envelope-fill::before {
  content: "\e904";
}

.icon-envelope::before {
  content: "\e905";
}

.icon-feed::before {
  content: "\e906";
  font-size: 0.7em;
  position: relative;
  top: -0.2em;
}

.icon-minus::before {
  content: "\e909";
  font-size: 70%;
}

.icon-options::before {
  content: "\e90a";
}

.icon-plus::before {
  content: "\e90b";
  font-size: 0.7em;
  position: relative;
  top: -0.05em;
}

.icon-search::before {
  content: "\e90c";
  font-size: 0.85em;
  position: relative;
  top: -0.1em;
}

.icon-settings-fill::before {
  content: "\e90d";
}

.icon-settings::before {
  content: "\e90e";
}

.icon-star-fill {
  color: #ffb700;
}
.icon-star-fill::before {
  content: "\e90f";
}

.icon-star {
  color: #ffb700;
}
.icon-star::before {
  content: "\e910";
}

.icon-tag::before {
  content: "\e911";
}

.icon-user-fill::before {
  content: "\e912";
}

.icon-user::before {
  content: "\e913";
}

.icon-rotate-90::before {
  display: block;
  transform: rotate(90deg);
}

.icon-crm-generic::before {
  content: "\e903";
}

@font-face {
  font-family: "fontawesome";
  src: url("/assets/fonts/fontawesome.woff") format("woff");
}
/* makes the font 33% larger relative to the icon container */
.icon-fa-lg {
  font-size: 1.3333333333em;
  line-height: 0.75em;
  vertical-align: -15%;
}

.icon-fa-2x {
  font-size: 2em;
}

.icon-fa-3x {
  font-size: 3em;
}

.icon-fa-4x {
  font-size: 4em;
}

.icon-fa-5x {
  font-size: 5em;
}

.icon-fa-spin {
  animation: rotate 2s infinite linear;
}

.icon-fa-pulse {
  animation: rotate 1s infinite steps(8);
}

.icon-fa-slack, .icon-fa-meetup, .icon-fa-wpexplorer, .icon-fa-superpowers, .icon-fa-snowflake-o, .icon-fa-microchip, .icon-fa-eercast, .icon-fa-ravelry, .icon-fa-imdb, .icon-fa-etsy, .icon-fa-grav, .icon-fa-bandcamp, .icon-fa-times-rectangle-o,
.icon-fa-window-close-o, .icon-fa-times-rectangle,
.icon-fa-window-close, .icon-fa-window-restore, .icon-fa-window-minimize, .icon-fa-window-maximize, .icon-fa-podcast, .icon-fa-bathtub,
.icon-fa-s15,
.icon-fa-bath, .icon-fa-shower, .icon-fa-thermometer-0,
.icon-fa-thermometer-empty, .icon-fa-thermometer-1,
.icon-fa-thermometer-quarter, .icon-fa-thermometer-2,
.icon-fa-thermometer-half, .icon-fa-thermometer-3,
.icon-fa-thermometer-three-quarters, .icon-fa-thermometer-4,
.icon-fa-thermometer,
.icon-fa-thermometer-full, .icon-fa-telegram, .icon-fa-free-code-camp, .icon-fa-quora, .icon-fa-drivers-license-o,
.icon-fa-id-card-o, .icon-fa-drivers-license,
.icon-fa-id-card, .icon-fa-id-badge, .icon-fa-user-o, .icon-fa-user-circle-o, .icon-fa-user-circle, .icon-fa-vcard-o,
.icon-fa-address-card-o, .icon-fa-vcard,
.icon-fa-address-card, .icon-fa-address-book-o, .icon-fa-address-book, .icon-fa-linode, .icon-fa-envelope-open-o, .icon-fa-envelope-open, .icon-fa-handshake-o, .icon-fa-fa,
.icon-fa-font-awesome, .icon-fa-google-plus-circle,
.icon-fa-google-plus-official, .icon-fa-themeisle, .icon-fa-yoast, .icon-fa-first-order, .icon-fa-pied-piper, .icon-fa-snapchat-square, .icon-fa-snapchat-ghost, .icon-fa-snapchat, .icon-fa-viadeo-square, .icon-fa-viadeo, .icon-fa-low-vision, .icon-fa-signing,
.icon-fa-sign-language, .icon-fa-glide-g, .icon-fa-glide, .icon-fa-deafness,
.icon-fa-hard-of-hearing,
.icon-fa-deaf, .icon-fa-asl-interpreting,
.icon-fa-american-sign-language-interpreting, .icon-fa-assistive-listening-systems, .icon-fa-braille, .icon-fa-volume-control-phone, .icon-fa-audio-description, .icon-fa-blind, .icon-fa-question-circle-o, .icon-fa-wheelchair-alt, .icon-fa-universal-access, .icon-fa-envira, .icon-fa-wpforms, .icon-fa-wpbeginner, .icon-fa-gitlab, .icon-fa-percent, .icon-fa-bluetooth-b, .icon-fa-bluetooth, .icon-fa-hashtag, .icon-fa-shopping-basket, .icon-fa-shopping-bag, .icon-fa-stop-circle-o, .icon-fa-stop-circle, .icon-fa-pause-circle-o, .icon-fa-pause-circle, .icon-fa-scribd, .icon-fa-mixcloud, .icon-fa-product-hunt, .icon-fa-usb, .icon-fa-fort-awesome, .icon-fa-modx, .icon-fa-codiepie, .icon-fa-credit-card-alt, .icon-fa-edge, .icon-fa-reddit-alien, .icon-fa-fonticons, .icon-fa-black-tie, .icon-fa-vimeo, .icon-fa-houzz, .icon-fa-commenting-o, .icon-fa-commenting, .icon-fa-map, .icon-fa-map-o, .icon-fa-map-signs, .icon-fa-map-pin, .icon-fa-industry, .icon-fa-calendar-check-o, .icon-fa-calendar-times-o, .icon-fa-calendar-minus-o, .icon-fa-calendar-plus-o, .icon-fa-amazon, .icon-fa-500px, .icon-fa-contao, .icon-fa-tv,
.icon-fa-television, .icon-fa-internet-explorer, .icon-fa-opera, .icon-fa-firefox, .icon-fa-chrome, .icon-fa-safari, .icon-fa-wikipedia-w, .icon-fa-get-pocket, .icon-fa-odnoklassniki-square, .icon-fa-odnoklassniki, .icon-fa-tripadvisor, .icon-fa-gg-circle, .icon-fa-gg, .icon-fa-creative-commons, .icon-fa-registered, .icon-fa-trademark, .icon-fa-hand-peace-o, .icon-fa-hand-pointer-o, .icon-fa-hand-spock-o, .icon-fa-hand-lizard-o, .icon-fa-hand-scissors-o, .icon-fa-hand-stop-o,
.icon-fa-hand-paper-o, .icon-fa-hand-grab-o,
.icon-fa-hand-rock-o, .icon-fa-hourglass, .icon-fa-hourglass-3,
.icon-fa-hourglass-end, .icon-fa-hourglass-2,
.icon-fa-hourglass-half, .icon-fa-hourglass-1,
.icon-fa-hourglass-start, .icon-fa-hourglass-o, .icon-fa-balance-scale, .icon-fa-clone, .icon-fa-cc-diners-club, .icon-fa-cc-jcb, .icon-fa-sticky-note-o, .icon-fa-sticky-note, .icon-fa-object-ungroup, .icon-fa-object-group, .icon-fa-i-cursor, .icon-fa-mouse-pointer, .icon-fa-battery-0,
.icon-fa-battery-empty, .icon-fa-battery-1,
.icon-fa-battery-quarter, .icon-fa-battery-2,
.icon-fa-battery-half, .icon-fa-battery-3,
.icon-fa-battery-three-quarters, .icon-fa-battery-4,
.icon-fa-battery,
.icon-fa-battery-full, .icon-fa-expeditedssl, .icon-fa-opencart, .icon-fa-optin-monster, .icon-fa-yc,
.icon-fa-y-combinator, .icon-fa-medium, .icon-fa-subway, .icon-fa-train, .icon-fa-viacoin, .icon-fa-hotel,
.icon-fa-bed, .icon-fa-user-times, .icon-fa-user-plus, .icon-fa-server, .icon-fa-whatsapp, .icon-fa-pinterest-p, .icon-fa-facebook-official, .icon-fa-genderless, .icon-fa-neuter, .icon-fa-mars-stroke-h, .icon-fa-mars-stroke-v, .icon-fa-mars-stroke, .icon-fa-venus-mars, .icon-fa-mars-double, .icon-fa-venus-double, .icon-fa-transgender-alt, .icon-fa-intersex,
.icon-fa-transgender, .icon-fa-mercury, .icon-fa-mars, .icon-fa-venus, .icon-fa-heartbeat, .icon-fa-street-view, .icon-fa-motorcycle, .icon-fa-user-secret, .icon-fa-ship, .icon-fa-diamond, .icon-fa-cart-arrow-down, .icon-fa-cart-plus, .icon-fa-skyatlas, .icon-fa-simplybuilt, .icon-fa-shirtsinbulk, .icon-fa-sellsy, .icon-fa-leanpub, .icon-fa-forumbee, .icon-fa-dashcube, .icon-fa-connectdevelop, .icon-fa-buysellads, .icon-fa-meanpath, .icon-fa-shekel,
.icon-fa-sheqel,
.icon-fa-ils, .icon-fa-cc, .icon-fa-angellist, .icon-fa-ioxhost, .icon-fa-bus, .icon-fa-bicycle, .icon-fa-toggle-on, .icon-fa-toggle-off, .icon-fa-lastfm-square, .icon-fa-lastfm, .icon-fa-line-chart, .icon-fa-pie-chart, .icon-fa-area-chart, .icon-fa-birthday-cake, .icon-fa-paint-brush, .icon-fa-eyedropper, .icon-fa-at, .icon-fa-copyright, .icon-fa-trash, .icon-fa-bell-slash-o, .icon-fa-bell-slash, .icon-fa-cc-stripe, .icon-fa-cc-paypal, .icon-fa-cc-amex, .icon-fa-cc-discover, .icon-fa-cc-mastercard, .icon-fa-cc-visa, .icon-fa-google-wallet, .icon-fa-paypal, .icon-fa-calculator, .icon-fa-wifi, .icon-fa-newspaper-o, .icon-fa-yelp, .icon-fa-twitch, .icon-fa-slideshare, .icon-fa-plug, .icon-fa-binoculars, .icon-fa-tty, .icon-fa-soccer-ball-o,
.icon-fa-futbol-o, .icon-fa-bomb, .icon-fa-share-alt-square, .icon-fa-share-alt, .icon-fa-sliders, .icon-fa-paragraph, .icon-fa-header, .icon-fa-circle-thin, .icon-fa-history, .icon-fa-send-o,
.icon-fa-paper-plane-o, .icon-fa-send,
.icon-fa-paper-plane, .icon-fa-wechat,
.icon-fa-weixin, .icon-fa-qq, .icon-fa-tencent-weibo, .icon-fa-y-combinator-square,
.icon-fa-yc-square,
.icon-fa-hacker-news, .icon-fa-git, .icon-fa-git-square, .icon-fa-ge,
.icon-fa-empire, .icon-fa-ra,
.icon-fa-resistance,
.icon-fa-rebel, .icon-fa-circle-o-notch, .icon-fa-life-bouy,
.icon-fa-life-buoy,
.icon-fa-life-saver,
.icon-fa-support,
.icon-fa-life-ring, .icon-fa-jsfiddle, .icon-fa-codepen, .icon-fa-vine, .icon-fa-file-code-o, .icon-fa-file-movie-o,
.icon-fa-file-video-o, .icon-fa-file-sound-o,
.icon-fa-file-audio-o, .icon-fa-file-zip-o,
.icon-fa-file-archive-o, .icon-fa-file-photo-o,
.icon-fa-file-picture-o,
.icon-fa-file-image-o, .icon-fa-file-powerpoint-o, .icon-fa-file-excel-o, .icon-fa-file-word-o, .icon-fa-file-pdf-o, .icon-fa-database, .icon-fa-soundcloud, .icon-fa-deviantart, .icon-fa-spotify, .icon-fa-tree, .icon-fa-cab,
.icon-fa-taxi, .icon-fa-automobile,
.icon-fa-car, .icon-fa-recycle, .icon-fa-steam-square, .icon-fa-steam, .icon-fa-behance-square, .icon-fa-behance, .icon-fa-cubes, .icon-fa-cube, .icon-fa-spoon, .icon-fa-paw, .icon-fa-child, .icon-fa-building, .icon-fa-fax, .icon-fa-language, .icon-fa-joomla, .icon-fa-drupal, .icon-fa-pied-piper-alt, .icon-fa-pied-piper-pp, .icon-fa-digg, .icon-fa-delicious, .icon-fa-stumbleupon, .icon-fa-stumbleupon-circle, .icon-fa-reddit-square, .icon-fa-reddit, .icon-fa-google, .icon-fa-yahoo, .icon-fa-mortar-board,
.icon-fa-graduation-cap, .icon-fa-institution,
.icon-fa-bank,
.icon-fa-university, .icon-fa-openid, .icon-fa-wordpress, .icon-fa-envelope-square, .icon-fa-space-shuttle, .icon-fa-plus-square-o, .icon-fa-turkish-lira,
.icon-fa-try, .icon-fa-vimeo-square, .icon-fa-wheelchair, .icon-fa-dot-circle-o, .icon-fa-toggle-left,
.icon-fa-caret-square-o-left, .icon-fa-arrow-circle-o-left, .icon-fa-arrow-circle-o-right, .icon-fa-stack-exchange, .icon-fa-pagelines, .icon-fa-renren, .icon-fa-weibo, .icon-fa-vk, .icon-fa-bug, .icon-fa-archive, .icon-fa-moon-o, .icon-fa-sun-o, .icon-fa-gittip,
.icon-fa-gratipay, .icon-fa-male, .icon-fa-female, .icon-fa-trello, .icon-fa-foursquare, .icon-fa-skype, .icon-fa-dribbble, .icon-fa-linux, .icon-fa-android, .icon-fa-windows, .icon-fa-apple, .icon-fa-long-arrow-right, .icon-fa-long-arrow-left, .icon-fa-long-arrow-up, .icon-fa-long-arrow-down, .icon-fa-tumblr-square, .icon-fa-tumblr, .icon-fa-bitbucket-square, .icon-fa-bitbucket, .icon-fa-adn, .icon-fa-flickr, .icon-fa-instagram, .icon-fa-stack-overflow, .icon-fa-dropbox, .icon-fa-youtube-play, .icon-fa-xing-square, .icon-fa-xing, .icon-fa-youtube, .icon-fa-youtube-square, .icon-fa-thumbs-down, .icon-fa-thumbs-up, .icon-fa-sort-numeric-desc, .icon-fa-sort-numeric-asc, .icon-fa-sort-amount-desc, .icon-fa-sort-amount-asc, .icon-fa-sort-alpha-desc, .icon-fa-sort-alpha-asc, .icon-fa-file-text, .icon-fa-file, .icon-fa-bitcoin,
.icon-fa-btc, .icon-fa-won,
.icon-fa-krw, .icon-fa-ruble,
.icon-fa-rouble,
.icon-fa-rub, .icon-fa-cny,
.icon-fa-rmb,
.icon-fa-yen,
.icon-fa-jpy, .icon-fa-rupee,
.icon-fa-inr, .icon-fa-dollar,
.icon-fa-usd, .icon-fa-gbp, .icon-fa-euro,
.icon-fa-eur, .icon-fa-toggle-right,
.icon-fa-caret-square-o-right, .icon-fa-toggle-up,
.icon-fa-caret-square-o-up, .icon-fa-toggle-down,
.icon-fa-caret-square-o-down, .icon-fa-compass, .icon-fa-share-square, .icon-fa-external-link-square, .icon-fa-pencil-square, .icon-fa-check-square, .icon-fa-level-down, .icon-fa-level-up, .icon-fa-minus-square-o, .icon-fa-minus-square, .icon-fa-ticket, .icon-fa-play-circle, .icon-fa-rss-square, .icon-fa-ellipsis-v, .icon-fa-ellipsis-h, .icon-fa-bullseye, .icon-fa-unlock-alt, .icon-fa-anchor, .icon-fa-css3, .icon-fa-html5, .icon-fa-chevron-circle-down, .icon-fa-chevron-circle-up, .icon-fa-chevron-circle-right, .icon-fa-chevron-circle-left, .icon-fa-maxcdn, .icon-fa-rocket, .icon-fa-fire-extinguisher, .icon-fa-calendar-o, .icon-fa-shield, .icon-fa-microphone-slash, .icon-fa-microphone, .icon-fa-puzzle-piece, .icon-fa-eraser, .icon-fa-subscript, .icon-fa-superscript, .icon-fa-exclamation, .icon-fa-info, .icon-fa-question, .icon-fa-unlink,
.icon-fa-chain-broken, .icon-fa-code-fork, .icon-fa-crop, .icon-fa-location-arrow, .icon-fa-star-half-empty,
.icon-fa-star-half-full,
.icon-fa-star-half-o, .icon-fa-mail-reply-all,
.icon-fa-reply-all, .icon-fa-code, .icon-fa-terminal, .icon-fa-flag-checkered, .icon-fa-flag-o, .icon-fa-keyboard-o, .icon-fa-gamepad, .icon-fa-meh-o, .icon-fa-frown-o, .icon-fa-smile-o, .icon-fa-folder-open-o, .icon-fa-folder-o, .icon-fa-github-alt, .icon-fa-mail-reply,
.icon-fa-reply, .icon-fa-circle, .icon-fa-spinner, .icon-fa-quote-right, .icon-fa-quote-left, .icon-fa-circle-o, .icon-fa-mobile-phone,
.icon-fa-mobile, .icon-fa-tablet, .icon-fa-laptop, .icon-fa-desktop, .icon-fa-angle-down, .icon-fa-angle-up, .icon-fa-angle-right, .icon-fa-angle-left, .icon-fa-angle-double-down, .icon-fa-angle-double-up, .icon-fa-angle-double-right, .icon-fa-angle-double-left, .icon-fa-plus-square, .icon-fa-h-square, .icon-fa-beer, .icon-fa-fighter-jet, .icon-fa-medkit, .icon-fa-ambulance, .icon-fa-hospital-o, .icon-fa-building-o, .icon-fa-file-text-o, .icon-fa-cutlery, .icon-fa-coffee, .icon-fa-bell-o, .icon-fa-suitcase, .icon-fa-stethoscope, .icon-fa-user-md, .icon-fa-cloud-upload, .icon-fa-cloud-download, .icon-fa-exchange, .icon-fa-lightbulb-o, .icon-fa-paste,
.icon-fa-clipboard, .icon-fa-umbrella, .icon-fa-sitemap, .icon-fa-flash,
.icon-fa-bolt, .icon-fa-comments-o, .icon-fa-comment-o, .icon-fa-dashboard,
.icon-fa-tachometer, .icon-fa-legal,
.icon-fa-gavel, .icon-fa-rotate-left,
.icon-fa-undo, .icon-fa-linkedin, .icon-fa-envelope, .icon-fa-sort-up,
.icon-fa-sort-asc, .icon-fa-sort-down,
.icon-fa-sort-desc, .icon-fa-unsorted,
.icon-fa-sort, .icon-fa-columns, .icon-fa-caret-right, .icon-fa-caret-left, .icon-fa-caret-up, .icon-fa-caret-down, .icon-fa-money, .icon-fa-google-plus, .icon-fa-google-plus-square, .icon-fa-pinterest-square, .icon-fa-pinterest, .icon-fa-truck, .icon-fa-magic, .icon-fa-table, .icon-fa-underline, .icon-fa-strikethrough, .icon-fa-list-ol, .icon-fa-list-ul, .icon-fa-navicon,
.icon-fa-reorder,
.icon-fa-bars, .icon-fa-square, .icon-fa-save,
.icon-fa-floppy-o, .icon-fa-paperclip, .icon-fa-copy,
.icon-fa-files-o, .icon-fa-cut,
.icon-fa-scissors, .icon-fa-flask, .icon-fa-cloud, .icon-fa-chain,
.icon-fa-link, .icon-fa-group,
.icon-fa-users, .icon-fa-arrows-alt, .icon-fa-briefcase, .icon-fa-filter, .icon-fa-tasks, .icon-fa-wrench, .icon-fa-globe, .icon-fa-arrow-circle-down, .icon-fa-arrow-circle-up, .icon-fa-arrow-circle-right, .icon-fa-arrow-circle-left, .icon-fa-hand-o-down, .icon-fa-hand-o-up, .icon-fa-hand-o-left, .icon-fa-hand-o-right, .icon-fa-certificate, .icon-fa-bell, .icon-fa-bullhorn, .icon-fa-hdd-o, .icon-fa-feed,
.icon-fa-rss, .icon-fa-credit-card, .icon-fa-unlock, .icon-fa-github, .icon-fa-facebook-f,
.icon-fa-facebook, .icon-fa-twitter, .icon-fa-phone-square, .icon-fa-bookmark-o, .icon-fa-square-o, .icon-fa-phone, .icon-fa-lemon-o, .icon-fa-upload, .icon-fa-github-square, .icon-fa-trophy, .icon-fa-sign-in, .icon-fa-external-link, .icon-fa-thumb-tack, .icon-fa-linkedin-square, .icon-fa-sign-out, .icon-fa-heart-o, .icon-fa-star-half, .icon-fa-thumbs-o-down, .icon-fa-thumbs-o-up, .icon-fa-comments, .icon-fa-gears,
.icon-fa-cogs, .icon-fa-key, .icon-fa-camera-retro, .icon-fa-facebook-square, .icon-fa-twitter-square, .icon-fa-bar-chart-o,
.icon-fa-bar-chart, .icon-fa-arrows-h, .icon-fa-arrows-v, .icon-fa-folder-open, .icon-fa-folder, .icon-fa-shopping-cart, .icon-fa-retweet, .icon-fa-chevron-down, .icon-fa-chevron-up, .icon-fa-magnet, .icon-fa-comment, .icon-fa-random, .icon-fa-calendar, .icon-fa-plane, .icon-fa-warning,
.icon-fa-exclamation-triangle, .icon-fa-eye-slash, .icon-fa-eye, .icon-fa-fire, .icon-fa-leaf, .icon-fa-gift, .icon-fa-exclamation-circle, .icon-fa-asterisk, .icon-fa-minus, .icon-fa-plus, .icon-fa-compress, .icon-fa-expand, .icon-fa-mail-forward,
.icon-fa-share, .icon-fa-arrow-down, .icon-fa-arrow-up, .icon-fa-arrow-right, .icon-fa-arrow-left, .icon-fa-ban, .icon-fa-check-circle-o, .icon-fa-times-circle-o, .icon-fa-crosshairs, .icon-fa-info-circle, .icon-fa-question-circle, .icon-fa-check-circle, .icon-fa-times-circle, .icon-fa-minus-circle, .icon-fa-plus-circle, .icon-fa-chevron-right, .icon-fa-chevron-left, .icon-fa-eject, .icon-fa-step-forward, .icon-fa-fast-forward, .icon-fa-forward, .icon-fa-stop, .icon-fa-pause, .icon-fa-play, .icon-fa-backward, .icon-fa-fast-backward, .icon-fa-step-backward, .icon-fa-arrows, .icon-fa-check-square-o, .icon-fa-share-square-o, .icon-fa-edit,
.icon-fa-pencil-square-o, .icon-fa-tint, .icon-fa-adjust, .icon-fa-map-marker, .icon-fa-pencil, .icon-fa-photo,
.icon-fa-image,
.icon-fa-picture-o, .icon-fa-video-camera, .icon-fa-indent, .icon-fa-dedent,
.icon-fa-outdent, .icon-fa-list, .icon-fa-align-justify, .icon-fa-align-right, .icon-fa-align-center, .icon-fa-align-left, .icon-fa-text-width, .icon-fa-text-height, .icon-fa-italic, .icon-fa-bold, .icon-fa-font, .icon-fa-camera, .icon-fa-print, .icon-fa-bookmark, .icon-fa-book, .icon-fa-tags, .icon-fa-tag, .icon-fa-barcode, .icon-fa-qrcode, .icon-fa-volume-up, .icon-fa-volume-down, .icon-fa-volume-off, .icon-fa-headphones, .icon-fa-flag, .icon-fa-lock, .icon-fa-list-alt, .icon-fa-refresh, .icon-fa-rotate-right,
.icon-fa-repeat, .icon-fa-play-circle-o, .icon-fa-inbox, .icon-fa-arrow-circle-o-up, .icon-fa-arrow-circle-o-down, .icon-fa-download, .icon-fa-road, .icon-fa-clock-o, .icon-fa-file-o, .icon-fa-home, .icon-fa-trash-o, .icon-fa-gear,
.icon-fa-cog, .icon-fa-signal, .icon-fa-power-off, .icon-fa-search-minus, .icon-fa-search-plus, .icon-fa-remove,
.icon-fa-close,
.icon-fa-times, .icon-fa-check, .icon-fa-th-list, .icon-fa-th, .icon-fa-th-large, .icon-fa-film, .icon-fa-user, .icon-fa-star-o, .icon-fa-star, .icon-fa-heart, .icon-fa-envelope-o, .icon-fa-search, .icon-fa-music, .icon-fa-glass, a.external-link::after {
  font-family: "fontawesome";
  font-style: normal;
  font-weight: normal;
  speak: none;
  display: inline-block;
  width: 1em;
  margin-right: 0.2em;
  text-align: center;
  /* opacity: .8; */
  /* For safety - reset parent styles, that can break glyph codes */
  font-variant: normal;
  text-transform: none;
  /* fix buttons height, for twitter bootstrap */
  line-height: 1em;
  /* Animation center compensation - margins should be symmetric */
  /* remove if not needed */
  margin-left: 0.2em;
  position: relative;
  text-decoration: none;
  /* you can be more comfortable with increased icons size */
  /* font-size: 120%; */
  /* Font smoothing. That was taken from TWBS */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  /* Uncomment for 3D effect */
  /* text-shadow: 1px 1px 1px rgba($dark-grey-2, $alpha--2); */
}

.icon-fa-glass::before {
  content: "\f000";
}

.icon-fa-music::before {
  content: "\f001";
}

.icon-fa-search::before {
  content: "\f002";
}

.icon-fa-envelope-o::before {
  content: "\f003";
}

.icon-fa-heart::before {
  content: "\f004";
}

.icon-fa-star::before {
  content: "\f005";
}

.icon-fa-star-o::before {
  content: "\f006";
}

.icon-fa-user::before {
  content: "\f007";
}

.icon-fa-film::before {
  content: "\f008";
}

.icon-fa-th-large::before {
  content: "\f009";
}

.icon-fa-th::before {
  content: "\f00a";
}

.icon-fa-th-list::before {
  content: "\f00b";
}

.icon-fa-check::before {
  content: "\f00c";
}

.icon-fa-remove::before,
.icon-fa-close::before,
.icon-fa-times::before {
  content: "\f00d";
}

.icon-fa-search-plus::before {
  content: "\f00e";
}

.icon-fa-search-minus::before {
  content: "\f010";
}

.icon-fa-power-off::before {
  content: "\f011";
}

.icon-fa-signal::before {
  content: "\f012";
}

.icon-fa-gear::before,
.icon-fa-cog::before {
  content: "\f013";
}

.icon-fa-trash-o::before {
  content: "\f014";
}

.icon-fa-home::before {
  content: "\f015";
}

.icon-fa-file-o::before {
  content: "\f016";
}

.icon-fa-clock-o::before {
  content: "\f017";
}

.icon-fa-road::before {
  content: "\f018";
}

.icon-fa-download::before {
  content: "\f019";
}

.icon-fa-arrow-circle-o-down::before {
  content: "\f01a";
}

.icon-fa-arrow-circle-o-up::before {
  content: "\f01b";
}

.icon-fa-inbox::before {
  content: "\f01c";
}

.icon-fa-play-circle-o::before {
  content: "\f01d";
}

.icon-fa-rotate-right::before,
.icon-fa-repeat::before {
  content: "\f01e";
}

.icon-fa-refresh::before {
  content: "\f021";
}

.icon-fa-list-alt::before {
  content: "\f022";
}

.icon-fa-lock::before {
  content: "\f023";
}

.icon-fa-flag::before {
  content: "\f024";
}

.icon-fa-headphones::before {
  content: "\f025";
}

.icon-fa-volume-off::before {
  content: "\f026";
}

.icon-fa-volume-down::before {
  content: "\f027";
}

.icon-fa-volume-up::before {
  content: "\f028";
}

.icon-fa-qrcode::before {
  content: "\f029";
}

.icon-fa-barcode::before {
  content: "\f02a";
}

.icon-fa-tag::before {
  content: "\f02b";
}

.icon-fa-tags::before {
  content: "\f02c";
}

.icon-fa-book::before {
  content: "\f02d";
}

.icon-fa-bookmark::before {
  content: "\f02e";
}

.icon-fa-print::before {
  content: "\f02f";
}

.icon-fa-camera::before {
  content: "\f030";
}

.icon-fa-font::before {
  content: "\f031";
}

.icon-fa-bold::before {
  content: "\f032";
}

.icon-fa-italic::before {
  content: "\f033";
}

.icon-fa-text-height::before {
  content: "\f034";
}

.icon-fa-text-width::before {
  content: "\f035";
}

.icon-fa-align-left::before {
  content: "\f036";
}

.icon-fa-align-center::before {
  content: "\f037";
}

.icon-fa-align-right::before {
  content: "\f038";
}

.icon-fa-align-justify::before {
  content: "\f039";
}

.icon-fa-list::before {
  content: "\f03a";
}

.icon-fa-dedent::before,
.icon-fa-outdent::before {
  content: "\f03b";
}

.icon-fa-indent::before {
  content: "\f03c";
}

.icon-fa-video-camera::before {
  content: "\f03d";
}

.icon-fa-photo::before,
.icon-fa-image::before,
.icon-fa-picture-o::before {
  content: "\f03e";
}

.icon-fa-pencil::before {
  content: "\f040";
}

.icon-fa-map-marker::before {
  content: "\f041";
}

.icon-fa-adjust::before {
  content: "\f042";
}

.icon-fa-tint::before {
  content: "\f043";
}

.icon-fa-edit::before,
.icon-fa-pencil-square-o::before {
  content: "\f044";
}

.icon-fa-share-square-o::before {
  content: "\f045";
}

.icon-fa-check-square-o::before {
  content: "\f046";
}

.icon-fa-arrows::before {
  content: "\f047";
}

.icon-fa-step-backward::before {
  content: "\f048";
}

.icon-fa-fast-backward::before {
  content: "\f049";
}

.icon-fa-backward::before {
  content: "\f04a";
}

.icon-fa-play::before {
  content: "\f04b";
}

.icon-fa-pause::before {
  content: "\f04c";
}

.icon-fa-stop::before {
  content: "\f04d";
}

.icon-fa-forward::before {
  content: "\f04e";
}

.icon-fa-fast-forward::before {
  content: "\f050";
}

.icon-fa-step-forward::before {
  content: "\f051";
}

.icon-fa-eject::before {
  content: "\f052";
}

.icon-fa-chevron-left::before {
  content: "\f053";
}

.icon-fa-chevron-right::before {
  content: "\f054";
}

.icon-fa-plus-circle::before {
  content: "\f055";
}

.icon-fa-minus-circle::before {
  content: "\f056";
}

.icon-fa-times-circle::before {
  content: "\f057";
}

.icon-fa-check-circle::before {
  content: "\f058";
}

.icon-fa-question-circle::before {
  content: "\f059";
}

.icon-fa-info-circle::before {
  content: "\f05a";
}

.icon-fa-crosshairs::before {
  content: "\f05b";
}

.icon-fa-times-circle-o::before {
  content: "\f05c";
}

.icon-fa-check-circle-o::before {
  content: "\f05d";
}

.icon-fa-ban::before {
  content: "\f05e";
}

.icon-fa-arrow-left::before {
  content: "\f060";
}

.icon-fa-arrow-right::before {
  content: "\f061";
}

.icon-fa-arrow-up::before {
  content: "\f062";
}

.icon-fa-arrow-down::before {
  content: "\f063";
}

.icon-fa-mail-forward::before,
.icon-fa-share::before {
  content: "\f064";
}

.icon-fa-expand::before {
  content: "\f065";
}

.icon-fa-compress::before {
  content: "\f066";
}

.icon-fa-plus::before {
  content: "\f067";
}

.icon-fa-minus::before {
  content: "\f068";
}

.icon-fa-asterisk::before {
  content: "\f069";
}

.icon-fa-exclamation-circle::before {
  content: "\f06a";
}

.icon-fa-gift::before {
  content: "\f06b";
}

.icon-fa-leaf::before {
  content: "\f06c";
}

.icon-fa-fire::before {
  content: "\f06d";
}

.icon-fa-eye::before {
  content: "\f06e";
}

.icon-fa-eye-slash::before {
  content: "\f070";
}

.icon-fa-warning::before,
.icon-fa-exclamation-triangle::before {
  content: "\f071";
}

.icon-fa-plane::before {
  content: "\f072";
}

.icon-fa-calendar::before {
  content: "\f073";
}

.icon-fa-random::before {
  content: "\f074";
}

.icon-fa-comment::before {
  content: "\f075";
}

.icon-fa-magnet::before {
  content: "\f076";
}

.icon-fa-chevron-up::before {
  content: "\f077";
}

.icon-fa-chevron-down::before {
  content: "\f078";
}

.icon-fa-retweet::before {
  content: "\f079";
}

.icon-fa-shopping-cart::before {
  content: "\f07a";
}

.icon-fa-folder::before {
  content: "\f07b";
}

.icon-fa-folder-open::before {
  content: "\f07c";
}

.icon-fa-arrows-v::before {
  content: "\f07d";
}

.icon-fa-arrows-h::before {
  content: "\f07e";
}

.icon-fa-bar-chart-o::before,
.icon-fa-bar-chart::before {
  content: "\f080";
}

.icon-fa-twitter-square::before {
  content: "\f081";
}

.icon-fa-facebook-square::before {
  content: "\f082";
}

.icon-fa-camera-retro::before {
  content: "\f083";
}

.icon-fa-key::before {
  content: "\f084";
}

.icon-fa-gears::before,
.icon-fa-cogs::before {
  content: "\f085";
}

.icon-fa-comments::before {
  content: "\f086";
}

.icon-fa-thumbs-o-up::before {
  content: "\f087";
}

.icon-fa-thumbs-o-down::before {
  content: "\f088";
}

.icon-fa-star-half::before {
  content: "\f089";
}

.icon-fa-heart-o::before {
  content: "\f08a";
}

.icon-fa-sign-out::before {
  content: "\f08b";
}

.icon-fa-linkedin-square::before {
  content: "\f08c";
}

.icon-fa-thumb-tack::before {
  content: "\f08d";
}

.icon-fa-external-link::before {
  content: "\f08e";
}

.icon-fa-sign-in::before {
  content: "\f090";
}

.icon-fa-trophy::before {
  content: "\f091";
}

.icon-fa-github-square::before {
  content: "\f092";
}

.icon-fa-upload::before {
  content: "\f093";
}

.icon-fa-lemon-o::before {
  content: "\f094";
}

.icon-fa-phone::before {
  content: "\f095";
}

.icon-fa-square-o::before {
  content: "\f096";
}

.icon-fa-bookmark-o::before {
  content: "\f097";
}

.icon-fa-phone-square::before {
  content: "\f098";
}

.icon-fa-twitter::before {
  content: "\f099";
}

.icon-fa-facebook-f::before,
.icon-fa-facebook::before {
  content: "\f09a";
}

.icon-fa-github::before {
  content: "\f09b";
}

.icon-fa-unlock::before {
  content: "\f09c";
}

.icon-fa-credit-card::before {
  content: "\f09d";
}

.icon-fa-feed::before,
.icon-fa-rss::before {
  content: "\f09e";
}

.icon-fa-hdd-o::before {
  content: "\f0a0";
}

.icon-fa-bullhorn::before {
  content: "\f0a1";
}

.icon-fa-bell::before {
  content: "\f0f3";
}

.icon-fa-certificate::before {
  content: "\f0a3";
}

.icon-fa-hand-o-right::before {
  content: "\f0a4";
}

.icon-fa-hand-o-left::before {
  content: "\f0a5";
}

.icon-fa-hand-o-up::before {
  content: "\f0a6";
}

.icon-fa-hand-o-down::before {
  content: "\f0a7";
}

.icon-fa-arrow-circle-left::before {
  content: "\f0a8";
}

.icon-fa-arrow-circle-right::before {
  content: "\f0a9";
}

.icon-fa-arrow-circle-up::before {
  content: "\f0aa";
}

.icon-fa-arrow-circle-down::before {
  content: "\f0ab";
}

.icon-fa-globe::before {
  content: "\f0ac";
}

.icon-fa-wrench::before {
  content: "\f0ad";
}

.icon-fa-tasks::before {
  content: "\f0ae";
}

.icon-fa-filter::before {
  content: "\f0b0";
}

.icon-fa-briefcase::before {
  content: "\f0b1";
}

.icon-fa-arrows-alt::before {
  content: "\f0b2";
}

.icon-fa-group::before,
.icon-fa-users::before {
  content: "\f0c0";
}

.icon-fa-chain::before,
.icon-fa-link::before {
  content: "\f0c1";
}

.icon-fa-cloud::before {
  content: "\f0c2";
}

.icon-fa-flask::before {
  content: "\f0c3";
}

.icon-fa-cut::before,
.icon-fa-scissors::before {
  content: "\f0c4";
}

.icon-fa-copy::before,
.icon-fa-files-o::before {
  content: "\f0c5";
}

.icon-fa-paperclip::before {
  content: "\f0c6";
}

.icon-fa-save::before,
.icon-fa-floppy-o::before {
  content: "\f0c7";
}

.icon-fa-square::before {
  content: "\f0c8";
}

.icon-fa-navicon::before,
.icon-fa-reorder::before,
.icon-fa-bars::before {
  content: "\f0c9";
}

.icon-fa-list-ul::before {
  content: "\f0ca";
}

.icon-fa-list-ol::before {
  content: "\f0cb";
}

.icon-fa-strikethrough::before {
  content: "\f0cc";
}

.icon-fa-underline::before {
  content: "\f0cd";
}

.icon-fa-table::before {
  content: "\f0ce";
}

.icon-fa-magic::before {
  content: "\f0d0";
}

.icon-fa-truck::before {
  content: "\f0d1";
}

.icon-fa-pinterest::before {
  content: "\f0d2";
}

.icon-fa-pinterest-square::before {
  content: "\f0d3";
}

.icon-fa-google-plus-square::before {
  content: "\f0d4";
}

.icon-fa-google-plus::before {
  content: "\f0d5";
}

.icon-fa-money::before {
  content: "\f0d6";
}

.icon-fa-caret-down::before {
  content: "\f0d7";
}

.icon-fa-caret-up::before {
  content: "\f0d8";
}

.icon-fa-caret-left::before {
  content: "\f0d9";
}

.icon-fa-caret-right::before {
  content: "\f0da";
}

.icon-fa-columns::before {
  content: "\f0db";
}

.icon-fa-unsorted::before,
.icon-fa-sort::before {
  content: "\f0dc";
}

.icon-fa-sort-down::before,
.icon-fa-sort-desc::before {
  content: "\f0dd";
}

.icon-fa-sort-up::before,
.icon-fa-sort-asc::before {
  content: "\f0de";
}

.icon-fa-envelope::before {
  content: "\f0e0";
}

.icon-fa-linkedin::before {
  content: "\f0e1";
}

.icon-fa-rotate-left::before,
.icon-fa-undo::before {
  content: "\f0e2";
}

.icon-fa-legal::before,
.icon-fa-gavel::before {
  content: "\f0e3";
}

.icon-fa-dashboard::before,
.icon-fa-tachometer::before {
  content: "\f0e4";
}

.icon-fa-comment-o::before {
  content: "\f0e5";
}

.icon-fa-comments-o::before {
  content: "\f0e6";
}

.icon-fa-flash::before,
.icon-fa-bolt::before {
  content: "\f0e7";
}

.icon-fa-sitemap::before {
  content: "\f0e8";
}

.icon-fa-umbrella::before {
  content: "\f0e9";
}

.icon-fa-paste::before,
.icon-fa-clipboard::before {
  content: "\f0ea";
}

.icon-fa-lightbulb-o::before {
  content: "\f0eb";
}

.icon-fa-exchange::before {
  content: "\f0ec";
}

.icon-fa-cloud-download::before {
  content: "\f0ed";
}

.icon-fa-cloud-upload::before {
  content: "\f0ee";
}

.icon-fa-user-md::before {
  content: "\f0f0";
}

.icon-fa-stethoscope::before {
  content: "\f0f1";
}

.icon-fa-suitcase::before {
  content: "\f0f2";
}

.icon-fa-bell-o::before {
  content: "\f0a2";
}

.icon-fa-coffee::before {
  content: "\f0f4";
}

.icon-fa-cutlery::before {
  content: "\f0f5";
}

.icon-fa-file-text-o::before {
  content: "\f0f6";
}

.icon-fa-building-o::before {
  content: "\f0f7";
}

.icon-fa-hospital-o::before {
  content: "\f0f8";
}

.icon-fa-ambulance::before {
  content: "\f0f9";
}

.icon-fa-medkit::before {
  content: "\f0fa";
}

.icon-fa-fighter-jet::before {
  content: "\f0fb";
}

.icon-fa-beer::before {
  content: "\f0fc";
}

.icon-fa-h-square::before {
  content: "\f0fd";
}

.icon-fa-plus-square::before {
  content: "\f0fe";
}

.icon-fa-angle-double-left::before {
  content: "\f100";
}

.icon-fa-angle-double-right::before {
  content: "\f101";
}

.icon-fa-angle-double-up::before {
  content: "\f102";
}

.icon-fa-angle-double-down::before {
  content: "\f103";
}

.icon-fa-angle-left::before {
  content: "\f104";
}

.icon-fa-angle-right::before {
  content: "\f105";
}

.icon-fa-angle-up::before {
  content: "\f106";
}

.icon-fa-angle-down::before {
  content: "\f107";
}

.icon-fa-desktop::before {
  content: "\f108";
}

.icon-fa-laptop::before {
  content: "\f109";
}

.icon-fa-tablet::before {
  content: "\f10a";
}

.icon-fa-mobile-phone::before,
.icon-fa-mobile::before {
  content: "\f10b";
}

.icon-fa-circle-o::before {
  content: "\f10c";
}

.icon-fa-quote-left::before {
  content: "\f10d";
}

.icon-fa-quote-right::before {
  content: "\f10e";
}

.icon-fa-spinner::before {
  content: "\f110";
}

.icon-fa-circle::before {
  content: "\f111";
}

.icon-fa-mail-reply::before,
.icon-fa-reply::before {
  content: "\f112";
}

.icon-fa-github-alt::before {
  content: "\f113";
}

.icon-fa-folder-o::before {
  content: "\f114";
}

.icon-fa-folder-open-o::before {
  content: "\f115";
}

.icon-fa-smile-o::before {
  content: "\f118";
}

.icon-fa-frown-o::before {
  content: "\f119";
}

.icon-fa-meh-o::before {
  content: "\f11a";
}

.icon-fa-gamepad::before {
  content: "\f11b";
}

.icon-fa-keyboard-o::before {
  content: "\f11c";
}

.icon-fa-flag-o::before {
  content: "\f11d";
}

.icon-fa-flag-checkered::before {
  content: "\f11e";
}

.icon-fa-terminal::before {
  content: "\f120";
}

.icon-fa-code::before {
  content: "\f121";
}

.icon-fa-mail-reply-all::before,
.icon-fa-reply-all::before {
  content: "\f122";
}

.icon-fa-star-half-empty::before,
.icon-fa-star-half-full::before,
.icon-fa-star-half-o::before {
  content: "\f123";
}

.icon-fa-location-arrow::before {
  content: "\f124";
}

.icon-fa-crop::before {
  content: "\f125";
}

.icon-fa-code-fork::before {
  content: "\f126";
}

.icon-fa-unlink::before,
.icon-fa-chain-broken::before {
  content: "\f127";
}

.icon-fa-question::before {
  content: "\f128";
}

.icon-fa-info::before {
  content: "\f129";
}

.icon-fa-exclamation::before {
  content: "\f12a";
}

.icon-fa-superscript::before {
  content: "\f12b";
}

.icon-fa-subscript::before {
  content: "\f12c";
}

.icon-fa-eraser::before {
  content: "\f12d";
}

.icon-fa-puzzle-piece::before {
  content: "\f12e";
}

.icon-fa-microphone::before {
  content: "\f130";
}

.icon-fa-microphone-slash::before {
  content: "\f131";
}

.icon-fa-shield::before {
  content: "\f132";
}

.icon-fa-calendar-o::before {
  content: "\f133";
}

.icon-fa-fire-extinguisher::before {
  content: "\f134";
}

.icon-fa-rocket::before {
  content: "\f135";
}

.icon-fa-maxcdn::before {
  content: "\f136";
}

.icon-fa-chevron-circle-left::before {
  content: "\f137";
}

.icon-fa-chevron-circle-right::before {
  content: "\f138";
}

.icon-fa-chevron-circle-up::before {
  content: "\f139";
}

.icon-fa-chevron-circle-down::before {
  content: "\f13a";
}

.icon-fa-html5::before {
  content: "\f13b";
}

.icon-fa-css3::before {
  content: "\f13c";
}

.icon-fa-anchor::before {
  content: "\f13d";
}

.icon-fa-unlock-alt::before {
  content: "\f13e";
}

.icon-fa-bullseye::before {
  content: "\f140";
}

.icon-fa-ellipsis-h::before {
  content: "\f141";
}

.icon-fa-ellipsis-v::before {
  content: "\f142";
}

.icon-fa-rss-square::before {
  content: "\f143";
}

.icon-fa-play-circle::before {
  content: "\f144";
}

.icon-fa-ticket::before {
  content: "\f145";
}

.icon-fa-minus-square::before {
  content: "\f146";
}

.icon-fa-minus-square-o::before {
  content: "\f147";
}

.icon-fa-level-up::before {
  content: "\f148";
}

.icon-fa-level-down::before {
  content: "\f149";
}

.icon-fa-check-square::before {
  content: "\f14a";
}

.icon-fa-pencil-square::before {
  content: "\f14b";
}

.icon-fa-external-link-square::before {
  content: "\f14c";
}

.icon-fa-share-square::before {
  content: "\f14d";
}

.icon-fa-compass::before {
  content: "\f14e";
}

.icon-fa-toggle-down::before,
.icon-fa-caret-square-o-down::before {
  content: "\f150";
}

.icon-fa-toggle-up::before,
.icon-fa-caret-square-o-up::before {
  content: "\f151";
}

.icon-fa-toggle-right::before,
.icon-fa-caret-square-o-right::before {
  content: "\f152";
}

.icon-fa-euro::before,
.icon-fa-eur::before {
  content: "\f153";
}

.icon-fa-gbp::before {
  content: "\f154";
}

.icon-fa-dollar::before,
.icon-fa-usd::before {
  content: "\f155";
}

.icon-fa-rupee::before,
.icon-fa-inr::before {
  content: "\f156";
}

.icon-fa-cny::before,
.icon-fa-rmb::before,
.icon-fa-yen::before,
.icon-fa-jpy::before {
  content: "\f157";
}

.icon-fa-ruble::before,
.icon-fa-rouble::before,
.icon-fa-rub::before {
  content: "\f158";
}

.icon-fa-won::before,
.icon-fa-krw::before {
  content: "\f159";
}

.icon-fa-bitcoin::before,
.icon-fa-btc::before {
  content: "\f15a";
}

.icon-fa-file::before {
  content: "\f15b";
}

.icon-fa-file-text::before {
  content: "\f15c";
}

.icon-fa-sort-alpha-asc::before {
  content: "\f15d";
}

.icon-fa-sort-alpha-desc::before {
  content: "\f15e";
}

.icon-fa-sort-amount-asc::before {
  content: "\f160";
}

.icon-fa-sort-amount-desc::before {
  content: "\f161";
}

.icon-fa-sort-numeric-asc::before {
  content: "\f162";
}

.icon-fa-sort-numeric-desc::before {
  content: "\f163";
}

.icon-fa-thumbs-up::before {
  content: "\f164";
}

.icon-fa-thumbs-down::before {
  content: "\f165";
}

.icon-fa-youtube-square::before {
  content: "\f166";
}

.icon-fa-youtube::before {
  content: "\f167";
}

.icon-fa-xing::before {
  content: "\f168";
}

.icon-fa-xing-square::before {
  content: "\f169";
}

.icon-fa-youtube-play::before {
  content: "\f16a";
}

.icon-fa-dropbox::before {
  content: "\f16b";
}

.icon-fa-stack-overflow::before {
  content: "\f16c";
}

.icon-fa-instagram::before {
  content: "\f16d";
}

.icon-fa-flickr::before {
  content: "\f16e";
}

.icon-fa-adn::before {
  content: "\f170";
}

.icon-fa-bitbucket::before {
  content: "\f171";
}

.icon-fa-bitbucket-square::before {
  content: "\f172";
}

.icon-fa-tumblr::before {
  content: "\f173";
}

.icon-fa-tumblr-square::before {
  content: "\f174";
}

.icon-fa-long-arrow-down::before {
  content: "\f175";
}

.icon-fa-long-arrow-up::before {
  content: "\f176";
}

.icon-fa-long-arrow-left::before {
  content: "\f177";
}

.icon-fa-long-arrow-right::before {
  content: "\f178";
}

.icon-fa-apple::before {
  content: "\f179";
}

.icon-fa-windows::before {
  content: "\f17a";
}

.icon-fa-android::before {
  content: "\f17b";
}

.icon-fa-linux::before {
  content: "\f17c";
}

.icon-fa-dribbble::before {
  content: "\f17d";
}

.icon-fa-skype::before {
  content: "\f17e";
}

.icon-fa-foursquare::before {
  content: "\f180";
}

.icon-fa-trello::before {
  content: "\f181";
}

.icon-fa-female::before {
  content: "\f182";
}

.icon-fa-male::before {
  content: "\f183";
}

.icon-fa-gittip::before,
.icon-fa-gratipay::before {
  content: "\f184";
}

.icon-fa-sun-o::before {
  content: "\f185";
}

.icon-fa-moon-o::before {
  content: "\f186";
}

.icon-fa-archive::before {
  content: "\f187";
}

.icon-fa-bug::before {
  content: "\f188";
}

.icon-fa-vk::before {
  content: "\f189";
}

.icon-fa-weibo::before {
  content: "\f18a";
}

.icon-fa-renren::before {
  content: "\f18b";
}

.icon-fa-pagelines::before {
  content: "\f18c";
}

.icon-fa-stack-exchange::before {
  content: "\f18d";
}

.icon-fa-arrow-circle-o-right::before {
  content: "\f18e";
}

.icon-fa-arrow-circle-o-left::before {
  content: "\f190";
}

.icon-fa-toggle-left::before,
.icon-fa-caret-square-o-left::before {
  content: "\f191";
}

.icon-fa-dot-circle-o::before {
  content: "\f192";
}

.icon-fa-wheelchair::before {
  content: "\f193";
}

.icon-fa-vimeo-square::before {
  content: "\f194";
}

.icon-fa-turkish-lira::before,
.icon-fa-try::before {
  content: "\f195";
}

.icon-fa-plus-square-o::before {
  content: "\f196";
}

.icon-fa-space-shuttle::before {
  content: "\f197";
}

.icon-fa-envelope-square::before {
  content: "\f199";
}

.icon-fa-wordpress::before {
  content: "\f19a";
}

.icon-fa-openid::before {
  content: "\f19b";
}

.icon-fa-institution::before,
.icon-fa-bank::before,
.icon-fa-university::before {
  content: "\f19c";
}

.icon-fa-mortar-board::before,
.icon-fa-graduation-cap::before {
  content: "\f19d";
}

.icon-fa-yahoo::before {
  content: "\f19e";
}

.icon-fa-google::before {
  content: "\f1a0";
}

.icon-fa-reddit::before {
  content: "\f1a1";
}

.icon-fa-reddit-square::before {
  content: "\f1a2";
}

.icon-fa-stumbleupon-circle::before {
  content: "\f1a3";
}

.icon-fa-stumbleupon::before {
  content: "\f1a4";
}

.icon-fa-delicious::before {
  content: "\f1a5";
}

.icon-fa-digg::before {
  content: "\f1a6";
}

.icon-fa-pied-piper-pp::before {
  content: "\f1a7";
}

.icon-fa-pied-piper-alt::before {
  content: "\f1a8";
}

.icon-fa-drupal::before {
  content: "\f1a9";
}

.icon-fa-joomla::before {
  content: "\f1aa";
}

.icon-fa-language::before {
  content: "\f1ab";
}

.icon-fa-fax::before {
  content: "\f1ac";
}

.icon-fa-building::before {
  content: "\f1ad";
}

.icon-fa-child::before {
  content: "\f1ae";
}

.icon-fa-paw::before {
  content: "\f1b0";
}

.icon-fa-spoon::before {
  content: "\f1b1";
}

.icon-fa-cube::before {
  content: "\f1b2";
}

.icon-fa-cubes::before {
  content: "\f1b3";
}

.icon-fa-behance::before {
  content: "\f1b4";
}

.icon-fa-behance-square::before {
  content: "\f1b5";
}

.icon-fa-steam::before {
  content: "\f1b6";
}

.icon-fa-steam-square::before {
  content: "\f1b7";
}

.icon-fa-recycle::before {
  content: "\f1b8";
}

.icon-fa-automobile::before,
.icon-fa-car::before {
  content: "\f1b9";
}

.icon-fa-cab::before,
.icon-fa-taxi::before {
  content: "\f1ba";
}

.icon-fa-tree::before {
  content: "\f1bb";
}

.icon-fa-spotify::before {
  content: "\f1bc";
}

.icon-fa-deviantart::before {
  content: "\f1bd";
}

.icon-fa-soundcloud::before {
  content: "\f1be";
}

.icon-fa-database::before {
  content: "\f1c0";
}

.icon-fa-file-pdf-o::before {
  content: "\f1c1";
}

.icon-fa-file-word-o::before {
  content: "\f1c2";
}

.icon-fa-file-excel-o::before {
  content: "\f1c3";
}

.icon-fa-file-powerpoint-o::before {
  content: "\f1c4";
}

.icon-fa-file-photo-o::before,
.icon-fa-file-picture-o::before,
.icon-fa-file-image-o::before {
  content: "\f1c5";
}

.icon-fa-file-zip-o::before,
.icon-fa-file-archive-o::before {
  content: "\f1c6";
}

.icon-fa-file-sound-o::before,
.icon-fa-file-audio-o::before {
  content: "\f1c7";
}

.icon-fa-file-movie-o::before,
.icon-fa-file-video-o::before {
  content: "\f1c8";
}

.icon-fa-file-code-o::before {
  content: "\f1c9";
}

.icon-fa-vine::before {
  content: "\f1ca";
}

.icon-fa-codepen::before {
  content: "\f1cb";
}

.icon-fa-jsfiddle::before {
  content: "\f1cc";
}

.icon-fa-life-bouy::before,
.icon-fa-life-buoy::before,
.icon-fa-life-saver::before,
.icon-fa-support::before,
.icon-fa-life-ring::before {
  content: "\f1cd";
}

.icon-fa-circle-o-notch::before {
  content: "\f1ce";
}

.icon-fa-ra::before,
.icon-fa-resistance::before,
.icon-fa-rebel::before {
  content: "\f1d0";
}

.icon-fa-ge::before,
.icon-fa-empire::before {
  content: "\f1d1";
}

.icon-fa-git-square::before {
  content: "\f1d2";
}

.icon-fa-git::before {
  content: "\f1d3";
}

.icon-fa-y-combinator-square::before,
.icon-fa-yc-square::before,
.icon-fa-hacker-news::before {
  content: "\f1d4";
}

.icon-fa-tencent-weibo::before {
  content: "\f1d5";
}

.icon-fa-qq::before {
  content: "\f1d6";
}

.icon-fa-wechat::before,
.icon-fa-weixin::before {
  content: "\f1d7";
}

.icon-fa-send::before,
.icon-fa-paper-plane::before {
  content: "\f1d8";
}

.icon-fa-send-o::before,
.icon-fa-paper-plane-o::before {
  content: "\f1d9";
}

.icon-fa-history::before {
  content: "\f1da";
}

.icon-fa-circle-thin::before {
  content: "\f1db";
}

.icon-fa-header::before {
  content: "\f1dc";
}

.icon-fa-paragraph::before {
  content: "\f1dd";
}

.icon-fa-sliders::before {
  content: "\f1de";
}

.icon-fa-share-alt::before {
  content: "\f1e0";
}

.icon-fa-share-alt-square::before {
  content: "\f1e1";
}

.icon-fa-bomb::before {
  content: "\f1e2";
}

.icon-fa-soccer-ball-o::before,
.icon-fa-futbol-o::before {
  content: "\f1e3";
}

.icon-fa-tty::before {
  content: "\f1e4";
}

.icon-fa-binoculars::before {
  content: "\f1e5";
}

.icon-fa-plug::before {
  content: "\f1e6";
}

.icon-fa-slideshare::before {
  content: "\f1e7";
}

.icon-fa-twitch::before {
  content: "\f1e8";
}

.icon-fa-yelp::before {
  content: "\f1e9";
}

.icon-fa-newspaper-o::before {
  content: "\f1ea";
}

.icon-fa-wifi::before {
  content: "\f1eb";
}

.icon-fa-calculator::before {
  content: "\f1ec";
}

.icon-fa-paypal::before {
  content: "\f1ed";
}

.icon-fa-google-wallet::before {
  content: "\f1ee";
}

.icon-fa-cc-visa::before {
  content: "\f1f0";
}

.icon-fa-cc-mastercard::before {
  content: "\f1f1";
}

.icon-fa-cc-discover::before {
  content: "\f1f2";
}

.icon-fa-cc-amex::before {
  content: "\f1f3";
}

.icon-fa-cc-paypal::before {
  content: "\f1f4";
}

.icon-fa-cc-stripe::before {
  content: "\f1f5";
}

.icon-fa-bell-slash::before {
  content: "\f1f6";
}

.icon-fa-bell-slash-o::before {
  content: "\f1f7";
}

.icon-fa-trash::before {
  content: "\f1f8";
}

.icon-fa-copyright::before {
  content: "\f1f9";
}

.icon-fa-at::before {
  content: "\f1fa";
}

.icon-fa-eyedropper::before {
  content: "\f1fb";
}

.icon-fa-paint-brush::before {
  content: "\f1fc";
}

.icon-fa-birthday-cake::before {
  content: "\f1fd";
}

.icon-fa-area-chart::before {
  content: "\f1fe";
}

.icon-fa-pie-chart::before {
  content: "\f200";
}

.icon-fa-line-chart::before {
  content: "\f201";
}

.icon-fa-lastfm::before {
  content: "\f202";
}

.icon-fa-lastfm-square::before {
  content: "\f203";
}

.icon-fa-toggle-off::before {
  content: "\f204";
}

.icon-fa-toggle-on::before {
  content: "\f205";
}

.icon-fa-bicycle::before {
  content: "\f206";
}

.icon-fa-bus::before {
  content: "\f207";
}

.icon-fa-ioxhost::before {
  content: "\f208";
}

.icon-fa-angellist::before {
  content: "\f209";
}

.icon-fa-cc::before {
  content: "\f20a";
}

.icon-fa-shekel::before,
.icon-fa-sheqel::before,
.icon-fa-ils::before {
  content: "\f20b";
}

.icon-fa-meanpath::before {
  content: "\f20c";
}

.icon-fa-buysellads::before {
  content: "\f20d";
}

.icon-fa-connectdevelop::before {
  content: "\f20e";
}

.icon-fa-dashcube::before {
  content: "\f210";
}

.icon-fa-forumbee::before {
  content: "\f211";
}

.icon-fa-leanpub::before {
  content: "\f212";
}

.icon-fa-sellsy::before {
  content: "\f213";
}

.icon-fa-shirtsinbulk::before {
  content: "\f214";
}

.icon-fa-simplybuilt::before {
  content: "\f215";
}

.icon-fa-skyatlas::before {
  content: "\f216";
}

.icon-fa-cart-plus::before {
  content: "\f217";
}

.icon-fa-cart-arrow-down::before {
  content: "\f218";
}

.icon-fa-diamond::before {
  content: "\f219";
}

.icon-fa-ship::before {
  content: "\f21a";
}

.icon-fa-user-secret::before {
  content: "\f21b";
}

.icon-fa-motorcycle::before {
  content: "\f21c";
}

.icon-fa-street-view::before {
  content: "\f21d";
}

.icon-fa-heartbeat::before {
  content: "\f21e";
}

.icon-fa-venus::before {
  content: "\f221";
}

.icon-fa-mars::before {
  content: "\f222";
}

.icon-fa-mercury::before {
  content: "\f223";
}

.icon-fa-intersex::before,
.icon-fa-transgender::before {
  content: "\f224";
}

.icon-fa-transgender-alt::before {
  content: "\f225";
}

.icon-fa-venus-double::before {
  content: "\f226";
}

.icon-fa-mars-double::before {
  content: "\f227";
}

.icon-fa-venus-mars::before {
  content: "\f228";
}

.icon-fa-mars-stroke::before {
  content: "\f229";
}

.icon-fa-mars-stroke-v::before {
  content: "\f22a";
}

.icon-fa-mars-stroke-h::before {
  content: "\f22b";
}

.icon-fa-neuter::before {
  content: "\f22c";
}

.icon-fa-genderless::before {
  content: "\f22d";
}

.icon-fa-facebook-official::before {
  content: "\f230";
}

.icon-fa-pinterest-p::before {
  content: "\f231";
}

.icon-fa-whatsapp::before {
  content: "\f232";
}

.icon-fa-server::before {
  content: "\f233";
}

.icon-fa-user-plus::before {
  content: "\f234";
}

.icon-fa-user-times::before {
  content: "\f235";
}

.icon-fa-hotel::before,
.icon-fa-bed::before {
  content: "\f236";
}

.icon-fa-viacoin::before {
  content: "\f237";
}

.icon-fa-train::before {
  content: "\f238";
}

.icon-fa-subway::before {
  content: "\f239";
}

.icon-fa-medium::before {
  content: "\f23a";
}

.icon-fa-yc::before,
.icon-fa-y-combinator::before {
  content: "\f23b";
}

.icon-fa-optin-monster::before {
  content: "\f23c";
}

.icon-fa-opencart::before {
  content: "\f23d";
}

.icon-fa-expeditedssl::before {
  content: "\f23e";
}

.icon-fa-battery-4::before,
.icon-fa-battery::before,
.icon-fa-battery-full::before {
  content: "\f240";
}

.icon-fa-battery-3::before,
.icon-fa-battery-three-quarters::before {
  content: "\f241";
}

.icon-fa-battery-2::before,
.icon-fa-battery-half::before {
  content: "\f242";
}

.icon-fa-battery-1::before,
.icon-fa-battery-quarter::before {
  content: "\f243";
}

.icon-fa-battery-0::before,
.icon-fa-battery-empty::before {
  content: "\f244";
}

.icon-fa-mouse-pointer::before {
  content: "\f245";
}

.icon-fa-i-cursor::before {
  content: "\f246";
}

.icon-fa-object-group::before {
  content: "\f247";
}

.icon-fa-object-ungroup::before {
  content: "\f248";
}

.icon-fa-sticky-note::before {
  content: "\f249";
}

.icon-fa-sticky-note-o::before {
  content: "\f24a";
}

.icon-fa-cc-jcb::before {
  content: "\f24b";
}

.icon-fa-cc-diners-club::before {
  content: "\f24c";
}

.icon-fa-clone::before {
  content: "\f24d";
}

.icon-fa-balance-scale::before {
  content: "\f24e";
}

.icon-fa-hourglass-o::before {
  content: "\f250";
}

.icon-fa-hourglass-1::before,
.icon-fa-hourglass-start::before {
  content: "\f251";
}

.icon-fa-hourglass-2::before,
.icon-fa-hourglass-half::before {
  content: "\f252";
}

.icon-fa-hourglass-3::before,
.icon-fa-hourglass-end::before {
  content: "\f253";
}

.icon-fa-hourglass::before {
  content: "\f254";
}

.icon-fa-hand-grab-o::before,
.icon-fa-hand-rock-o::before {
  content: "\f255";
}

.icon-fa-hand-stop-o::before,
.icon-fa-hand-paper-o::before {
  content: "\f256";
}

.icon-fa-hand-scissors-o::before {
  content: "\f257";
}

.icon-fa-hand-lizard-o::before {
  content: "\f258";
}

.icon-fa-hand-spock-o::before {
  content: "\f259";
}

.icon-fa-hand-pointer-o::before {
  content: "\f25a";
}

.icon-fa-hand-peace-o::before {
  content: "\f25b";
}

.icon-fa-trademark::before {
  content: "\f25c";
}

.icon-fa-registered::before {
  content: "\f25d";
}

.icon-fa-creative-commons::before {
  content: "\f25e";
}

.icon-fa-gg::before {
  content: "\f260";
}

.icon-fa-gg-circle::before {
  content: "\f261";
}

.icon-fa-tripadvisor::before {
  content: "\f262";
}

.icon-fa-odnoklassniki::before {
  content: "\f263";
}

.icon-fa-odnoklassniki-square::before {
  content: "\f264";
}

.icon-fa-get-pocket::before {
  content: "\f265";
}

.icon-fa-wikipedia-w::before {
  content: "\f266";
}

.icon-fa-safari::before {
  content: "\f267";
}

.icon-fa-chrome::before {
  content: "\f268";
}

.icon-fa-firefox::before {
  content: "\f269";
}

.icon-fa-opera::before {
  content: "\f26a";
}

.icon-fa-internet-explorer::before {
  content: "\f26b";
}

.icon-fa-tv::before,
.icon-fa-television::before {
  content: "\f26c";
}

.icon-fa-contao::before {
  content: "\f26d";
}

.icon-fa-500px::before {
  content: "\f26e";
}

.icon-fa-amazon::before {
  content: "\f270";
}

.icon-fa-calendar-plus-o::before {
  content: "\f271";
}

.icon-fa-calendar-minus-o::before {
  content: "\f272";
}

.icon-fa-calendar-times-o::before {
  content: "\f273";
}

.icon-fa-calendar-check-o::before {
  content: "\f274";
}

.icon-fa-industry::before {
  content: "\f275";
}

.icon-fa-map-pin::before {
  content: "\f276";
}

.icon-fa-map-signs::before {
  content: "\f277";
}

.icon-fa-map-o::before {
  content: "\f278";
}

.icon-fa-map::before {
  content: "\f279";
}

.icon-fa-commenting::before {
  content: "\f27a";
}

.icon-fa-commenting-o::before {
  content: "\f27b";
}

.icon-fa-houzz::before {
  content: "\f27c";
}

.icon-fa-vimeo::before {
  content: "\f27d";
}

.icon-fa-black-tie::before {
  content: "\f27e";
}

.icon-fa-fonticons::before {
  content: "\f280";
}

.icon-fa-reddit-alien::before {
  content: "\f281";
}

.icon-fa-edge::before {
  content: "\f282";
}

.icon-fa-credit-card-alt::before {
  content: "\f283";
}

.icon-fa-codiepie::before {
  content: "\f284";
}

.icon-fa-modx::before {
  content: "\f285";
}

.icon-fa-fort-awesome::before {
  content: "\f286";
}

.icon-fa-usb::before {
  content: "\f287";
}

.icon-fa-product-hunt::before {
  content: "\f288";
}

.icon-fa-mixcloud::before {
  content: "\f289";
}

.icon-fa-scribd::before {
  content: "\f28a";
}

.icon-fa-pause-circle::before {
  content: "\f28b";
}

.icon-fa-pause-circle-o::before {
  content: "\f28c";
}

.icon-fa-stop-circle::before {
  content: "\f28d";
}

.icon-fa-stop-circle-o::before {
  content: "\f28e";
}

.icon-fa-shopping-bag::before {
  content: "\f290";
}

.icon-fa-shopping-basket::before {
  content: "\f291";
}

.icon-fa-hashtag::before {
  content: "\f292";
}

.icon-fa-bluetooth::before {
  content: "\f293";
}

.icon-fa-bluetooth-b::before {
  content: "\f294";
}

.icon-fa-percent::before {
  content: "\f295";
}

.icon-fa-gitlab::before {
  content: "\f296";
}

.icon-fa-wpbeginner::before {
  content: "\f297";
}

.icon-fa-wpforms::before {
  content: "\f298";
}

.icon-fa-envira::before {
  content: "\f299";
}

.icon-fa-universal-access::before {
  content: "\f29a";
}

.icon-fa-wheelchair-alt::before {
  content: "\f29b";
}

.icon-fa-question-circle-o::before {
  content: "\f29c";
}

.icon-fa-blind::before {
  content: "\f29d";
}

.icon-fa-audio-description::before {
  content: "\f29e";
}

.icon-fa-volume-control-phone::before {
  content: "\f2a0";
}

.icon-fa-braille::before {
  content: "\f2a1";
}

.icon-fa-assistive-listening-systems::before {
  content: "\f2a2";
}

.icon-fa-asl-interpreting::before,
.icon-fa-american-sign-language-interpreting::before {
  content: "\f2a3";
}

.icon-fa-deafness::before,
.icon-fa-hard-of-hearing::before,
.icon-fa-deaf::before {
  content: "\f2a4";
}

.icon-fa-glide::before {
  content: "\f2a5";
}

.icon-fa-glide-g::before {
  content: "\f2a6";
}

.icon-fa-signing::before,
.icon-fa-sign-language::before {
  content: "\f2a7";
}

.icon-fa-low-vision::before {
  content: "\f2a8";
}

.icon-fa-viadeo::before {
  content: "\f2a9";
}

.icon-fa-viadeo-square::before {
  content: "\f2aa";
}

.icon-fa-snapchat::before {
  content: "\f2ab";
}

.icon-fa-snapchat-ghost::before {
  content: "\f2ac";
}

.icon-fa-snapchat-square::before {
  content: "\f2ad";
}

.icon-fa-pied-piper::before {
  content: "\f2ae";
}

.icon-fa-first-order::before {
  content: "\f2b0";
}

.icon-fa-yoast::before {
  content: "\f2b1";
}

.icon-fa-themeisle::before {
  content: "\f2b2";
}

.icon-fa-google-plus-circle::before,
.icon-fa-google-plus-official::before {
  content: "\f2b3";
}

.icon-fa-fa::before,
.icon-fa-font-awesome::before {
  content: "\f2b4";
}

.icon-fa-handshake-o::before {
  content: "\f2b5";
}

.icon-fa-envelope-open::before {
  content: "\f2b6";
}

.icon-fa-envelope-open-o::before {
  content: "\f2b7";
}

.icon-fa-linode::before {
  content: "\f2b8";
}

.icon-fa-address-book::before {
  content: "\f2b9";
}

.icon-fa-address-book-o::before {
  content: "\f2ba";
}

.icon-fa-vcard::before,
.icon-fa-address-card::before {
  content: "\f2bb";
}

.icon-fa-vcard-o::before,
.icon-fa-address-card-o::before {
  content: "\f2bc";
}

.icon-fa-user-circle::before {
  content: "\f2bd";
}

.icon-fa-user-circle-o::before {
  content: "\f2be";
}

.icon-fa-user-o::before {
  content: "\f2c0";
}

.icon-fa-id-badge::before {
  content: "\f2c1";
}

.icon-fa-drivers-license::before,
.icon-fa-id-card::before {
  content: "\f2c2";
}

.icon-fa-drivers-license-o::before,
.icon-fa-id-card-o::before {
  content: "\f2c3";
}

.icon-fa-quora::before {
  content: "\f2c4";
}

.icon-fa-free-code-camp::before {
  content: "\f2c5";
}

.icon-fa-telegram::before {
  content: "\f2c6";
}

.icon-fa-thermometer-4::before,
.icon-fa-thermometer::before,
.icon-fa-thermometer-full::before {
  content: "\f2c7";
}

.icon-fa-thermometer-3::before,
.icon-fa-thermometer-three-quarters::before {
  content: "\f2c8";
}

.icon-fa-thermometer-2::before,
.icon-fa-thermometer-half::before {
  content: "\f2c9";
}

.icon-fa-thermometer-1::before,
.icon-fa-thermometer-quarter::before {
  content: "\f2ca";
}

.icon-fa-thermometer-0::before,
.icon-fa-thermometer-empty::before {
  content: "\f2cb";
}

.icon-fa-shower::before {
  content: "\f2cc";
}

.icon-fa-bathtub::before,
.icon-fa-s15::before,
.icon-fa-bath::before {
  content: "\f2cd";
}

.icon-fa-podcast::before {
  content: "\f2ce";
}

.icon-fa-window-maximize::before {
  content: "\f2d0";
}

.icon-fa-window-minimize::before {
  content: "\f2d1";
}

.icon-fa-window-restore::before {
  content: "\f2d2";
}

.icon-fa-times-rectangle::before,
.icon-fa-window-close::before {
  content: "\f2d3";
}

.icon-fa-times-rectangle-o::before,
.icon-fa-window-close-o::before {
  content: "\f2d4";
}

.icon-fa-bandcamp::before {
  content: "\f2d5";
}

.icon-fa-grav::before {
  content: "\f2d6";
}

.icon-fa-etsy::before {
  content: "\f2d7";
}

.icon-fa-imdb::before {
  content: "\f2d8";
}

.icon-fa-ravelry::before {
  content: "\f2d9";
}

.icon-fa-eercast::before {
  content: "\f2da";
}

.icon-fa-microchip::before {
  content: "\f2db";
}

.icon-fa-snowflake-o::before {
  content: "\f2dc";
}

.icon-fa-superpowers::before {
  content: "\f2dd";
}

.icon-fa-wpexplorer::before {
  content: "\f2de";
}

.icon-fa-meetup::before {
  content: "\f2e0";
}

/* Modifications of Fontawesome Icons */
.icon-fa-facebook-official,
.icon-fa-facebook {
  color: #3b5998;
}

.icon-fa-twitter-square,
.icon-fa-twitter {
  color: #1da1f2;
}

.icon-fa-linkedin-square,
.icon-fa-linkedin {
  color: #2d7bbd;
}

.icon-fa-slack svg path {
  fill: currentColor;
}

.app-wrapper {
  align-items: center;
  background-color: #e6eaec;
  display: flex;
  flex-direction: column;
  height: 100vh;
}
.app-wrapper--with-navigation-bar {
  padding-top: 60px;
}

.main-layout-wrapper, .main-layout {
  width: 100%;
}

.main-header-wrapper {
  top: 0;
  left: 0;
  right: 0;
  position: fixed;
  z-index: 1003;
}

.main-layout {
  background-color: #f4f6f7;
  box-shadow: 0 0 10px rgba(10, 10, 10, 0.1);
  display: flex;
  flex: 100 0 auto;
  flex-direction: column;
  font-size: 1rem;
  line-height: 1rem;
  margin-left: auto;
  margin-right: 0;
  max-width: 100%;
  min-width: 1230px;
}
.main-layout__columns-wrapper {
  display: flex;
  flex: 1000;
}

.content-left {
  background-color: #fff;
  flex: 0 1 32%;
  max-width: 32%;
  position: relative;
  transition: flex 0.5s ease;
}

.content-right {
  background: #fff;
  border-left: 0;
  flex: 1;
  overflow: hidden;
  position: relative;
  transition: flex 0.5s ease;
}

.main-timeline-area {
  background-color: #d7dde2;
  top: 123px;
  transition: top 0.3s ease;
}
.main-timeline-area--interval-menu-open {
  top: 239px;
}
.main-timeline-area--custom-interval-menu-open {
  top: 394px;
}
.main-timeline-area--search-menu-open {
  top: 163px;
}
.main-timeline-area--no-results {
  overflow-y: hidden;
}
.main-timeline-area--integration-scheduled-for-deletion {
  background: #fff;
  padding-top: 60px;
}

.main-timeline-item {
  background-color: #999;
  height: 100px;
  width: 100%;
}
.main-timeline-item:nth-child(even) {
  background-color: #b7b7b7;
}

.simple-table {
  font-size: 12px;
  text-decoration: none;
  width: 100%;
}
.simple-table td,
.simple-table th {
  padding: 11px 12px;
}
.simple-table__row-without-hover {
  pointer-events: none;
}
.simple-table th {
  background-color: #fafafa;
  border-bottom: 2px solid #e6eaec;
  font-size: 14px;
  font-weight: bold;
  text-align: left;
}
.simple-table th:first-child {
  border-top-left-radius: 5px;
}
.simple-table th:last-child {
  border-top-right-radius: 5px;
}
.simple-table tbody tr:hover,
.simple-table tfoot tr:hover {
  background-color: rgba(183, 183, 183, 0.1);
}
.simple-table tbody tr:nth-child(even),
.simple-table tfoot tr:nth-child(even) {
  background-color: #fafafa;
}
.simple-table tbody tr:last-child td:first-child,
.simple-table tfoot tr:last-child td:first-child {
  border-bottom-left-radius: 5px;
}
.simple-table tbody tr:last-child td:last-child,
.simple-table tfoot tr:last-child td:last-child {
  border-bottom-right-radius: 5px;
}
.simple-table__header {
  margin-bottom: 10px;
}
.simple-table__actions {
  position: relative;
  top: -2px;
}

.rounded-section {
  background-color: rgba(118, 118, 118, 0.05);
  border: 1px solid rgba(10, 10, 10, 0.05);
  border-radius: 5px;
  margin-bottom: 10px;
  padding: 10px;
}
.rounded-section h6 {
  margin-bottom: 5px;
}
.rounded-section__row {
  margin-top: 8px;
}
.rounded-section__row:first-of-type {
  margin-top: 0;
}
.rounded-section.error {
  background-color: #da595b;
  border: 1px solid #da595b;
  color: #fff;
}
.rounded-section.error a {
  color: #fff;
  text-decoration: underline;
}
.rounded-section .label-form--sm {
  display: block;
  font-size: 14px;
  margin: 5px 0 5px 2px;
}
.rounded-section .input-row {
  margin-bottom: 8px;
}

.set-color.clickable:hover, .set-color.active {
  color: #fff !important;
}
.set-color.clickable, .set-color.clickable.active:hover {
  background-color: #fff;
}

.set-color-0 {
  border: 1px solid #1565c0 !important;
  color: #1565c0 !important;
}
.set-color-0.clickable:hover, .set-color-0.active {
  background-color: #1565c0;
}
.set-color-0.clickable.active:hover {
  color: #1565c0 !important;
}

.set-color-1 {
  border: 1px solid #2e7d32 !important;
  color: #2e7d32 !important;
}
.set-color-1.clickable:hover, .set-color-1.active {
  background-color: #2e7d32;
}
.set-color-1.clickable.active:hover {
  color: #2e7d32 !important;
}

.set-color-2 {
  border: 1px solid #c75200 !important;
  color: #c75200 !important;
}
.set-color-2.clickable:hover, .set-color-2.active {
  background-color: #c75200;
}
.set-color-2.clickable.active:hover {
  color: #c75200 !important;
}

.set-color-3 {
  border: 1px solid #dd2c00 !important;
  color: #dd2c00 !important;
}
.set-color-3.clickable:hover, .set-color-3.active {
  background-color: #dd2c00;
}
.set-color-3.clickable.active:hover {
  color: #dd2c00 !important;
}

.set-color-4 {
  border: 1px solid #6a1b9a !important;
  color: #6a1b9a !important;
}
.set-color-4.clickable:hover, .set-color-4.active {
  background-color: #6a1b9a;
}
.set-color-4.clickable.active:hover {
  color: #6a1b9a !important;
}

.set-color-5 {
  border: 1px solid #283593 !important;
  color: #283593 !important;
}
.set-color-5.clickable:hover, .set-color-5.active {
  background-color: #283593;
}
.set-color-5.clickable.active:hover {
  color: #283593 !important;
}

.set-color-6 {
  border: 1px solid #00838f !important;
  color: #00838f !important;
}
.set-color-6.clickable:hover, .set-color-6.active {
  background-color: #00838f;
}
.set-color-6.clickable.active:hover {
  color: #00838f !important;
}

.set-color-7 {
  border: 1px solid #c62828 !important;
  color: #c62828 !important;
}
.set-color-7.clickable:hover, .set-color-7.active {
  background-color: #c62828;
}
.set-color-7.clickable.active:hover {
  color: #c62828 !important;
}

.set-color-8 {
  border: 1px solid #ad1457 !important;
  color: #ad1457 !important;
}
.set-color-8.clickable:hover, .set-color-8.active {
  background-color: #ad1457;
}
.set-color-8.clickable.active:hover {
  color: #ad1457 !important;
}

.set-color-9 {
  border: 1px solid #6200ea !important;
  color: #6200ea !important;
}
.set-color-9.clickable:hover, .set-color-9.active {
  background-color: #6200ea;
}
.set-color-9.clickable.active:hover {
  color: #6200ea !important;
}

.simple-tabs {
  border-bottom: 1px solid #e6eaec;
  display: flex;
  margin: -25px -50px 20px;
  padding: 0 50px;
}
.simple-tabs .simple-tab {
  align-items: center;
  color: #767676;
  display: flex;
  font-size: 15px;
  height: 46px;
  margin-right: 8px;
  padding: 0 20px;
  position: relative;
  transition: color 0.2s ease;
  white-space: nowrap;
}
.simple-tabs .simple-tab:hover {
  color: #073572;
  cursor: pointer;
}
.simple-tabs .simple-tab.active {
  border-color: #e6eaec;
  color: #073572;
}
.simple-tabs .simple-tab.active::after {
  background-color: #073572;
  bottom: -1px;
  height: 2px;
  left: -1px;
  right: -1px;
}
.simple-tabs .simple-tab.active .count-label {
  border-color: #073572;
  color: #073572;
}
.simple-tabs .simple-tab .count-label {
  margin-left: 8px;
  top: 1px;
}
.simple-tabs .simple-tab .count-label .load-indicator {
  position: relative;
  top: 1px;
}

.route-website-feed-edit .feed-edit-header {
  background-image: linear-gradient(15deg, rgb(135, 97, 218) 0%, rgb(46, 177, 221) 85%, rgb(46, 177, 221) 100%);
  color: #fff;
  height: 145px;
  position: relative;
}
.route-website-feed-edit .feed-edit-header .page-hero {
  overflow: hidden;
  padding-right: 70px;
  padding-top: 0;
}
.route-website-feed-edit .feed-edit-header .feed-action__duplicate {
  flex: none;
  margin-left: 15px;
  margin-right: 15px;
}
.route-website-feed-edit .feed-edit-header .feed-title-flex-row {
  max-width: 100%;
}
.route-website-feed-edit .feed-edit-header--tabs {
  display: flex;
  margin-top: -41px;
  padding: 0 50px;
}
.route-website-feed-edit .feed-edit-header--tab {
  align-items: center;
  background: #fff;
  border-radius: 5px 5px 0 0;
  color: #404b55;
  display: flex;
  font-size: 15px;
  height: 41px;
  margin-right: 5px;
  padding: 11px 14px 10px;
  position: relative;
  transition: none;
  z-index: 1;
}
.route-website-feed-edit .feed-edit-header--tab .tab-icon {
  margin-left: 1px;
  margin-right: 6px;
}
.route-website-feed-edit .feed-edit-header--tab .icon-fa-slack {
  top: 1px;
}
.route-website-feed-edit .feed-edit-header--tab .icon-fa-envelope {
  font-size: 14px;
}
.route-website-feed-edit .feed-edit-header--tab .count-label {
  border-color: #fff;
  color: inherit;
  margin: -3px 0 0 7px;
  position: relative;
  transition: none;
}
.route-website-feed-edit .feed-edit-header--tab.active {
  z-index: 2;
}
.route-website-feed-edit .feed-edit-header--tab.active .count-label {
  border-color: #404b55;
}
.route-website-feed-edit .feed-edit-header--tab.active:hover {
  color: #404b55;
}
.route-website-feed-edit .feed-edit-header--tab:focus {
  outline: 0;
}
.route-website-feed-edit .feed-edit-header--tab:not(.active) {
  background: transparent;
  color: #fff;
}
.route-website-feed-edit .feed-edit-header--tab:not(.active):focus {
  background: rgba(255, 255, 255, 0.5);
  color: #404b55;
}
.route-website-feed-edit .feed-edit-footer__row {
  margin: 8px 0;
}
.route-website-feed-edit .feed-edit-footer__row:first-child {
  border-top: 1px dashed #d1d1d1;
  margin-top: 0;
  padding-top: 20px;
}
.route-website-feed-edit .feed-edit-footer__row:last-child:not(:first-child) {
  margin-top: 18px;
}
.route-website-feed-edit .upgrade-to-premium {
  margin-bottom: 30px;
}

.route-website-feed-edit-container {
  padding: 15px 25px;
}

.route-website-feed-edit-header {
  display: flex;
  font-size: 21px;
  justify-content: space-between;
}

.route-website-feed-edit-feed-input {
  min-width: 290px;
}

.route-website-feed-edit-content-wrapper .page-hero--light {
  border-bottom: 0;
}
.route-website-feed-edit-content-wrapper section.name-input-section {
  border-bottom: 1px solid #e6eaec;
  margin: 0 -50px 20px;
  padding: 0 50px 30px;
}
.route-website-feed-edit-content-wrapper section.filters-section {
  margin-bottom: 0;
}
.route-website-feed-edit-content-wrapper .feed-edit-delete {
  float: left;
  margin-top: 24px;
}
.route-website-feed-edit-content-wrapper .feed-edit-delete button {
  margin-left: -15px;
}

.affected-leads-label {
  align-items: center;
  font-weight: bold;
}
.affected-leads-label .count-label {
  cursor: default;
  border-color: #073572;
  color: #073572;
  padding: 4px 9px;
}

.custom-feed-editor {
  padding-bottom: 30px;
}
.custom-feed-editor .name-input {
  margin-right: 40px;
}
.custom-feed-editor .name-input input {
  margin-top: 5px;
  max-width: 320px;
  width: 100%;
}

.feed-edit-save {
  display: flex;
  justify-content: flex-end;
}

.person-page__header {
  background: linear-gradient(15deg, rgb(135, 97, 218) 0%, rgb(46, 177, 221) 85%, rgb(46, 177, 221) 100%);
  color: #fff;
  height: 130px;
  margin-bottom: 35px;
  padding: 40px 50px;
}
.person-page__header__content {
  align-self: center;
  flex: 1;
  height: 85px;
  margin-left: 20px;
  min-width: 0;
}
.person-page__header__name {
  font-size: 1.75em;
  font-weight: bold;
  line-height: 1.25em;
}
.person-page__avatar-wrapper {
  background-color: #fff;
  border: 1px solid #e6eaec;
  border-radius: 5px;
  padding: 5px;
}
.person-page__avatar-wrapper .avatar-item {
  cursor: default;
}
.person-page__collapsible-section-title {
  padding-left: 20px !important;
  padding-right: 30px !important;
}
.person-page__collapsible-section-content {
  padding-left: 30px !important;
  padding-right: 30px !important;
}

.timeline-item-placeholder {
  background-color: #fafafa;
  border-radius: 3px;
  height: 86px;
  margin: 4px 5px;
  overflow: hidden;
  position: relative;
}
.timeline-item-placeholder:first-child {
  margin-top: 5px;
}

.tip__bg {
  box-shadow: inset 0 0 0 15px #fafafa;
  height: 100%;
  margin-left: -5px;
}
.tip__mask {
  background-color: #fafafa;
  position: absolute;
}
.tip__mask--vertical {
  height: 100%;
  top: 0;
  width: 10px;
}
.tip__mask--vertical--upper {
  left: 23px;
}
.tip__mask--vertical--lower {
  left: 93px;
}
.tip__mask--horizontal {
  left: 93px;
  width: 100%;
}
.tip__mask--horizontal--upper {
  height: 5px;
  top: 15px;
}
.tip__mask--horizontal--lower {
  bottom: 13px;
  height: 5px;
}
.tip__mask--horizontal--middle::after {
  background-color: #fafafa;
  height: 9px;
  right: 0;
  top: 11px;
  z-index: 10;
}
.tip__mask--horizontal--middle--upper {
  height: 11px;
  top: 29px;
}
.tip__mask--horizontal--middle--upper::after {
  width: 210px;
}
.tip__mask--horizontal--middle--lower {
  height: 11px;
  top: 49px;
}
.tip__mask--horizontal--middle--lower::after {
  width: 300px;
}

.website-install-tracker {
  margin-left: auto;
  margin-right: auto;
  min-width: 1230px;
}
.website-install-tracker__content-wrapper {
  margin-left: auto;
  margin-right: auto;
  width: 1080px;
}

.website-feed-lead-index__wrapper {
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  position: absolute;
  display: flex;
  flex-direction: column;
}
.website-feed-lead-index__collapsible-section-title {
  padding-left: 20px !important;
  padding-right: 30px !important;
}
.website-feed-lead-index__collapsible-section-content {
  padding-left: 30px !important;
  padding-right: 30px !important;
}

.accordion-section {
  margin: 0;
}

.accordion-section-head {
  align-items: center;
  color: #404b55;
  font-size: 16px;
  overflow: hidden;
  width: 100%;
}

.accordion-section-head-trigger {
  align-items: center;
  min-width: 0;
}
.accordion-section-head-trigger:focus {
  outline: 0;
}
.accordion-section-head-trigger:disabled {
  cursor: default;
}

.accordion-section-body--with-border {
  border-top: 1px solid #e6eaec;
}

.website-install-tracker__styled-list {
  counter-reset: list-counter;
  list-style: none;
  padding-left: 35px;
}
.website-install-tracker__styled-list-item {
  counter-increment: list-counter;
  line-height: 1.4;
  margin-bottom: 10px;
  position: relative;
}
.website-install-tracker__styled-list-item::before {
  width: 22px;
  height: 22px;
  align-items: center;
  border: 2px solid #8c9eab;
  border-radius: 50%;
  color: #8c9eab;
  content: counter(list-counter);
  display: flex;
  font-size: 14px;
  font-weight: bold;
  justify-content: center;
  left: -35px;
  letter-spacing: 0;
  line-height: 0;
  position: absolute;
  word-spacing: 0;
}

.full-screen-panel {
  display: flex;
  flex-direction: column;
  margin-left: auto;
  margin-right: auto;
}
.full-screen-panel--x-small {
  max-width: 400px;
}
.full-screen-panel--small {
  max-width: 560px;
}
.full-screen-panel--normal {
  max-width: 660px;
}
.full-screen-panel--wide {
  max-width: 820px;
}
.full-screen-panel--super-wide {
  max-width: 1080px;
}
.full-screen-panel--full {
  width: 100%;
}
.full-screen-panel__main--with-shadow {
  box-shadow: 0 1px 5px rgba(10, 10, 10, 0.08);
}

.full-screen-panel-body {
  background-color: #fff;
  border-radius: 5px;
  padding: 30px;
}
.full-screen-panel-body--with-panel-header {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  padding-bottom: 40px;
  padding-left: 40px;
  padding-right: 40px;
  padding-top: 20px;
}

.full-screen-panel-header {
  align-items: center;
  background-color: #fff;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  color: #404b55;
  display: flex;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.4;
  min-height: initial;
  padding: 40px 40px 0 40px;
}

.full-screen-panel-title {
  margin-bottom: 20px;
  overflow-wrap: break-word;
  white-space: normal;
}

.full-screen-panel-body-column:not(:first-child) {
  border-left: 1px solid #e6eaec;
  margin-left: 30px;
  padding-left: 30px;
}

.pagination {
  display: table;
  margin: 22px auto 0;
}
.pagination li {
  display: inline-block;
  font-size: 12px;
  margin: 0 0 0 -1px;
}
.pagination li a,
.pagination li span {
  border: 1px solid #e6eaec;
  color: #767676;
  display: block;
  line-height: 12px;
  padding: 9px 0;
  position: relative;
  text-align: center;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  width: 35px;
}
.pagination li a:hover,
.pagination li span:hover {
  color: #073572;
}
.pagination li a::after,
.pagination li span::after {
  background-color: transparent;
  bottom: -1px;
  height: 2px;
  left: -1px;
  right: -1px;
  z-index: 10;
}
.pagination li:first-child {
  margin-left: 0;
}
.pagination li:first-child a {
  border-bottom-left-radius: 4px;
  border-top-left-radius: 4px;
}
.pagination li:last-child a {
  border-bottom-right-radius: 4px;
  border-top-right-radius: 4px;
}
.pagination li.disabled a {
  color: #b7b7b7;
  cursor: not-allowed;
}
.pagination li.active a {
  color: #073572;
}
.pagination li.active a::after {
  background-color: #073572;
}
.pagination li.dots span {
  pointer-events: none;
}

.ember-power-select-trigger{
  display: flex;
  width: 100%;
  min-width: 0px;
  cursor: pointer;
  align-items: center;
  overflow: hidden;
  border-width: 1px;
  border-right-width: 4px;
  border-style: solid;
  --tw-border-opacity: 1;
  border-color: rgb(77 86 102 / var(--tw-border-opacity, 1));
  --tw-text-opacity: 1;
  color: rgb(22 22 22 / var(--tw-text-opacity, 1));
  outline-width: 0px;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.ember-power-select-trigger[aria-disabled=true] {
  background: #f7f7f7;
  color: #8c9eab;
  cursor: default;
}
.ember-power-select-trigger[aria-disabled=true] .ember-power-select-status-icon {
  border-top-color: #b7b7b7;
}
.ember-power-select-trigger > *{
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.ember-power-select-trigger--no-options .ember-power-select-status-icon{
  display: none;
}
.social-media-plugin-not-found .ember-power-select-trigger--no-options .ember-power-select-status-icon {
  display: none;
}
.ember-power-select-trigger[aria-disabled=true] .ember-power-select-multiple-option::after {
  content: "×";
  color: #b7b7b7;
  position: absolute;
  right: 9px;
  top: 6px;
  transform: scale(1.4);
}
.ember-power-select-trigger input:focus{
  border-width: 0px;
}
.ember-power-select-trigger.no-right-margin{
  margin-right: 0px;
}
.ember-power-select-trigger:not(.ember-power-select-trigger-unstyled){
  height: 2.5rem;
  border-radius: 5px;
  border-width: 1px;
  border-style: solid;
  --tw-border-opacity: 1;
  border-color: rgb(206 218 237 / var(--tw-border-opacity, 1));
  padding-top: 0.625rem;
  padding-bottom: 0.625rem;
  padding-left: 0.5rem;
  padding-right: 1.5rem;
  font-family: Inter, sans-serif;
  font-size: 0.875rem;
  line-height: 1.25rem;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.ember-power-select-trigger.ember-power-select-trigger-unstyled:focus {
  border-color: inherit;
}
.ember-power-select-trigger .ember-power-select-status-icon{
  display: block;
  height: 0.875rem;
  width: 1.25rem;
  border-width: 0px;
  border-color: transparent;
  background-position: center;
  background-repeat: no-repeat;
  padding: 0px;
  transition-property: transform;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.premium-teaser.ember-power-select-trigger .ember-power-select-status-icon {
  display: block;
}
.ember-power-select-trigger .ember-power-select-status-icon {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 320 512'><path fill='%234D5666' d='M151.5 347.8L3.5 201c-4.7-4.7-4.7-12.3 0-17l19.8-19.8c4.7-4.7 12.3-4.7 17 0L160 282.7l119.7-118.5c4.7-4.7 12.3-4.7 17 0l19.8 19.8c4.7 4.7 4.7 12.3 0 17l-148 146.8c-4.7 4.7-12.3 4.7-17 0z'/></svg>");
  background-size: 14px auto;
}
.ember-power-select-trigger.ember-power-select-multiple-trigger{
  height: auto;
  min-height: 40px;
  padding-top: 0px;
  padding-bottom: 0px;
}
.ember-power-select-trigger.ember-power-select-multiple-trigger[aria-disabled=true]{
  cursor: not-allowed;
  --tw-bg-opacity: 1;
  background-color: rgb(240 242 245 / var(--tw-bg-opacity, 1));
}
.ember-power-select-trigger[aria-expanded=true]{
  --tw-border-opacity: 1;
  border-color: rgb(7 53 114 / var(--tw-border-opacity, 1));
}
.ember-power-select-trigger[aria-expanded=true].ember-basic-dropdown-trigger--above{
  border-top-right-radius: 0px;
  border-top-left-radius: 0px;
}
.ember-power-select-trigger[aria-expanded=true].ember-basic-dropdown-trigger--below{
  border-bottom-right-radius: 0px;
  border-bottom-left-radius: 0px;
}
.ember-power-select-trigger[aria-disabled=true]{
  cursor: not-allowed;
  --tw-bg-opacity: 1;
  background-color: rgb(240 242 245 / var(--tw-bg-opacity, 1));
  --tw-text-opacity: 1;
  color: rgb(155 166 185 / var(--tw-text-opacity, 1));
}
.ember-power-select-trigger[aria-disabled=true] .ember-power-select-status-icon{
  transform: none;
  opacity: 0.5;
}
.ember-power-select-trigger[aria-disabled=true] .ember-power-select-multiple-option{
  --tw-border-opacity: 1;
  border-color: rgb(206 218 237 / var(--tw-border-opacity, 1));
  --tw-bg-opacity: 1;
  background-color: rgb(240 242 245 / var(--tw-bg-opacity, 1));
  --tw-text-opacity: 1;
  color: rgb(155 166 185 / var(--tw-text-opacity, 1));
}
.ember-power-select-trigger[aria-disabled=true] .ember-power-select-multiple-option::after{
  top: auto;
  bottom: auto;
  margin-top: auto;
  margin-bottom: auto;
  --tw-text-opacity: 1;
  color: rgb(155 166 185 / var(--tw-text-opacity, 1));
}
.ember-power-select-trigger .ember-power-select-clear-btn {
  align-self: center;
  display: flex;
  font-size: 22px;
  right: 34px;
}

.ember-power-select-option{
  padding: 0.5rem;
  font-family: Inter, sans-serif;
  font-size: 0.875rem;
  line-height: 1.25rem;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.ember-power-select-option[aria-selected=true]{
  --tw-bg-opacity: 1;
  background-color: rgb(219 238 255 / var(--tw-bg-opacity, 1));
}
.ember-power-select-option[aria-current=true]{
  --tw-bg-opacity: 1;
  background-color: rgb(7 53 114 / var(--tw-bg-opacity, 1));
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity, 1));
}
.ember-power-select-option[aria-current=true] *{
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity, 1));
}

.ember-basic-dropdown-content.ember-power-select-dropdown.ember-basic-dropdown-content--below, .ember-basic-dropdown-content.ember-power-select-dropdown.ember-basic-dropdown-content--above{
  --tw-border-opacity: 1;
  border-color: rgb(7 53 114 / var(--tw-border-opacity, 1));
  --tw-shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
  --tw-shadow-colored: 0 1px 3px 0 var(--tw-shadow-color), 0 1px 2px -1px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

.ember-power-select-trigger-multiple-input{
  width: 100%;
  flex: 1 1 0%;
}
.ember-power-select-trigger-multiple-input:disabled{
  cursor: not-allowed;
  --tw-bg-opacity: 1;
  background-color: rgb(240 242 245 / var(--tw-bg-opacity, 1));
}
.ember-power-select-trigger-multiple-input::-webkit-search-cancel-button{
  display: none;
}
.social-media-plugin-not-found .ember-power-select-trigger-multiple-input::-webkit-search-cancel-button {
  display: none;
}

.ember-power-select-multiple-option{
  position: relative;
  margin: 0.25rem;
  display: flex;
  min-height: 24px;
  align-items: center;
  border-radius: 9999px;
  border-style: none;
  --tw-bg-opacity: 1;
  background-color: rgb(219 238 255 / var(--tw-bg-opacity, 1));
  padding-right: 1.75rem;
  padding-left: 0.75rem;
  font-family: Inter, sans-serif;
  font-size: 0.875rem;
  line-height: 1.25rem;
  --tw-text-opacity: 1;
  color: rgb(13 66 141 / var(--tw-text-opacity, 1));
}
.ember-power-select-multiple-option .ember-power-select-multiple-remove-btn{
  position: absolute;
  right: 0.5rem;
  top: 1px;
  z-index: 2;
  font-size: 1.125rem;
  line-height: 1.25rem;
  --tw-text-opacity: 1;
  color: rgb(13 66 141 / var(--tw-text-opacity, 1));
  opacity: 1;
  transition-property: opacity;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.ember-power-select-multiple-option .ember-power-select-multiple-remove-btn:hover{
  opacity: 0.6;
}
.ember-power-select-multiple-option--highlighted{
  border-width: 1px;
  border-style: solid;
  --tw-border-opacity: 1;
  border-color: rgb(222 242 203 / var(--tw-border-opacity, 1));
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1));
}

.ember-power-select-multiple-options{
  display: flex;
  align-items: center;
  flex: 1 1 0%;
  flex-wrap: wrap;
}

.ember-power-select-trigger-multiple-input::-webkit-search-decoration,
.ember-power-select-trigger-multiple-input::-webkit-search-cancel-button,
.ember-power-select-trigger-multiple-input::-webkit-search-results-button,
.ember-power-select-trigger-multiple-input::-webkit-search-results-decoration {
  -webkit-appearance: none;
}

.ember-power-select-placeholder,
.ember-power-select-selected-item{
  margin-left: 0px;
}

.ember-power-select-trigger-multiple-input::-moz-placeholder{
  --tw-text-opacity: 1;
  color: rgb(155 166 185 / var(--tw-text-opacity, 1));
}

.ember-power-select-placeholder,
.ember-power-select-trigger-multiple-input::placeholder{
  --tw-text-opacity: 1;
  color: rgb(155 166 185 / var(--tw-text-opacity, 1));
}

.ember-power-select-dropdown {
  z-index: 1005;
}

.ember-power-select-search{
  padding: 0.5rem;
  font-size: 0.875rem;
  line-height: 1.25rem;
}
.ember-power-select-search input{
  height: 2rem;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
  outline: 2px solid transparent;
  outline-offset: 2px;
}

.ember-power-select-search-input {
  border: 1px solid #e4e4e4;
  border-width: 1px;
  border-style: solid;
  --tw-border-opacity: 1;
  border-color: rgb(77 86 102 / var(--tw-border-opacity, 1));
}

.ember-power-select-group .ember-power-select-option{
  padding-left: 1.25rem;
}

.ember-power-select-option-support-text{
  --tw-text-opacity: 1;
  color: rgb(77 86 102 / var(--tw-text-opacity, 1));
}

.ember-power-select-option--no-matches-message{
  cursor: default;
  font-size: 0.875rem;
  line-height: 1.25rem;
}

.ember-power-select-options[role=listbox] {
  max-height: 35vh;
}

.condition-builder__inputs {
  display: grid;
  grid-gap: 10px;
  grid-template-columns: [condition-subject] min-content [operator] min-content [value] auto [buttons] min-content;
}
.condition-builder__condition-subject {
  width: 280px;
}
@media (max-width: 1250px) {
  .condition-builder__condition-subject {
    grid-column: span 4;
    width: 100%;
  }
}
@media (min-width: 1251px) {
  .condition-builder__condition-subject--option-selected {
    width: 200px;
  }
}
.condition-builder__operator {
  min-width: 100px;
}
@media (max-width: 1250px) {
  .condition-builder__operator {
    grid-row: 2;
  }
  .condition-builder__value {
    grid-column: span 2;
    grid-row: 2;
  }
}
.condition-builder__buttons {
  grid-column: buttons;
}
@media (max-width: 1250px) {
  .condition-builder__buttons {
    grid-row: 2;
  }
}
.condition-builder__select-requires-additional-setup {
  font-size: 16px;
  grid-column: span 3;
  grid-row: 2;
}

.navigable-select-option-item {
  /* higher specificity needed to overwrite ember-power-select default styling */
}
.navigable-select-option-item__category-container {
  align-items: center;
  display: flex;
  justify-content: space-between;
}
.navigable-select-option-item__group-heading {
  font-size: 12px;
  font-weight: bold;
  text-transform: uppercase;
}
.navigable-select-option-item__option-name {
  font-size: 14px;
  padding-left: 10px;
  padding-right: 10px;
}
.navigable-select-option-item__category-name {
  font-size: 14px;
}
.navigable-select-option-item__disabled-option.ember-power-select-option[aria-disabled=true] {
  color: #62718a;
  cursor: text;
  padding-bottom: 10px;
  padding-top: 10px;
}

.navigable-select-trigger-selected__parent-name {
  color: #999;
  font-size: 11px;
}
.navigable-select-trigger-selected__selected-option {
  font-size: 14px;
}
.navigable-select-trigger-selected__clear-btn {
  top: 0;
  right: 35px;
  position: absolute;
  cursor: pointer;
  height: 100%;
  width: 40px;
  text-align: center;
}

.navigable-select-trigger__placeholder-container {
  display: flex;
}
.navigable-select-trigger__caret-container {
  margin-left: 50px;
}

.processing-overlay {
  align-items: center;
  background: rgba(255, 255, 255, 0.6);
  bottom: 0;
  display: flex;
  justify-content: center;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 99;
}
.processing-overlay--more-opaque {
  background: rgba(255, 255, 255, 0.85);
}
.processing-overlay__label {
  color: #596976;
  font-size: 13px;
  font-weight: bold;
  padding-left: 7px;
  text-transform: uppercase;
}

.abstract-prospects-table__column {
  max-width: 100px;
}
.abstract-prospects-table__column.table__cell {
  font-size: 14px;
  line-height: 1.25em;
}

.avatar-item {
  background-color: #93158f;
  border-radius: 50%;
  color: #fff;
  cursor: pointer;
  display: inline-block;
  flex-shrink: 0;
  font-size: 16px;
  height: 60px;
  line-height: 60px;
  overflow: hidden;
  position: relative;
  text-align: center;
  text-transform: uppercase;
  width: 60px;
}
.avatar-item--cursor-pointer {
  cursor: pointer;
}
.avatar-item--cursor-default {
  cursor: default;
}
.avatar-item img {
  border-radius: 50%;
  box-shadow: 0 0 0 1px #fff;
  display: inline-block;
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}
.avatar-item--small {
  font-size: 9px;
  height: 20px;
  line-height: 21px;
  width: 20px;
}
.avatar-item--medium {
  font-size: 14px;
  height: 35px;
  line-height: 35px;
  width: 35px;
}
.avatar-item--large {
  font-size: 38px;
  height: 100px;
  line-height: 100px;
  width: 100px;
}
.avatar-item--squared {
  border-radius: 6px;
}
.avatar-item--squared img {
  border-radius: 6px;
}
.avatar-item.bright-green {
  background-color: #7ed320;
}
.avatar-item.bright-orange {
  background-color: #ffa363;
}
.avatar-item.bright-blue {
  background-color: #073572;
}
.avatar-item.bright-red {
  background-color: #ef5555;
}
.avatar-item.bright-yellow {
  background-color: #ffb700;
}
.avatar-item.bright-purple {
  background-color: #9865ff;
}
.avatar-item.dark-green {
  background-color: #159324;
}
.avatar-item.dark-red {
  background-color: #931e15;
}
.avatar-item.dark-blue {
  background-color: #404b55;
}
.avatar-item.dark-purple {
  background-color: #93158f;
}
.avatar-item.dark-turquoise {
  background-color: #158993;
}
.avatar-item.dark-yellow {
  background-color: #899315;
}
.avatar-item.bright-turquoise {
  background-color: #53a8a2;
}
.avatar-item.dark-orange {
  background-color: #b67417;
}

.basic-dropdown-styled__trigger {
  cursor: default;
  outline: none;
}
.basic-dropdown-styled__trigger--is-clickable {
  cursor: pointer;
}

.basic-dropdown-styled__content {
  border: 1px solid #e4e4e4;
  border-radius: 4px;
  box-shadow: rgba(0, 0, 0, 0.2) 0 2px 5px -1px;
  max-width: 500px;
  padding: 5px;
  will-change: transform, opacity;
  word-break: break-word;
  z-index: 1005;
}
.basic-dropdown-styled__content.ember-basic-dropdown-content--below.ember-basic-dropdown--transitioning-in, .basic-dropdown-styled__content.ember-basic-dropdown-content--below.ember-basic-dropdown--transitioned-in {
  animation: drop-fade-below 0.2s;
}
.basic-dropdown-styled__content.ember-basic-dropdown-content--above.ember-basic-dropdown--transitioning-in, .basic-dropdown-styled__content.ember-basic-dropdown-content--above.ember-basic-dropdown--transitioned-in {
  animation: drop-fade-above 0.2s;
}
.basic-dropdown-styled__content.ember-basic-dropdown-content--below.ember-basic-dropdown--transitioning-out {
  animation: drop-fade-below 0.2s reverse;
}
.basic-dropdown-styled__content.ember-basic-dropdown-content--above.ember-basic-dropdown--transitioning-out {
  animation: drop-fade-above 0.2s reverse;
}
.basic-dropdown-styled__content--no-arrow {
  margin-top: 0.25rem;
}
.basic-dropdown-styled__content--no-arrow.tooltip-decorator__content::before {
  width: 0;
  height: 0;
}
.basic-dropdown-styled__content--arrow::before {
  background: #fff;
  border-right: 1px solid #e4e4e4;
  border-top: 1px solid #e4e4e4;
  content: "";
  display: block;
  height: 12px;
  position: absolute;
  top: -7px;
  transform: rotate(-45deg);
  width: 12px;
  z-index: -1;
}
.basic-dropdown-styled__content.ember-basic-dropdown-content--above {
  margin-top: -12px !important;
}
.basic-dropdown-styled__content.ember-basic-dropdown-content--above::before {
  border-bottom: 1px solid #e4e4e4;
  border-left: 1px solid #e4e4e4;
  border-right: none;
  border-top: none;
  bottom: -7px;
  top: auto;
}
.basic-dropdown-styled__content.ember-basic-dropdown-content--below:not(.basic-dropdown-styled__content--no-arrow) {
  margin-top: 12px !important;
}
.basic-dropdown-styled__content.ember-basic-dropdown-content--left {
  margin-left: -10px;
}
.basic-dropdown-styled__content.ember-basic-dropdown-content--left::before {
  left: 10px;
}
.basic-dropdown-styled__content.ember-basic-dropdown-content--right {
  margin-right: -10px;
}
.basic-dropdown-styled__content.ember-basic-dropdown-content--right::before {
  right: 10px;
}
.basic-dropdown-styled__content.ember-basic-dropdown-content--center::before {
  left: calc(50% - 6px);
}

.ember-basic-dropdown-trigger{
  cursor: pointer;
  outline: none;
}

.book-a-training-calendar {
  height: 950px;
  min-width: 1000px;
  /* stylelint-disable-next-line selector-max-specificity */
}
.book-a-training-calendar--without-top-spacing {
  margin-top: -60px;
}
.book-a-training-calendar__loading-indicator {
  top: 100px;
}
.book-a-training-calendar iframe {
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  position: absolute;
}

.box-with-badge {
  width: 120px;
  height: 90px;
  background-color: #fff;
  border-radius: 3px;
  display: flex;
  flex-flow: column wrap;
  justify-content: center;
  position: relative;
  transition: border-color 200ms ease;
}
.box-with-badge--primary {
  border-color: #073572;
}
.box-with-badge--primary:hover {
  border-color: #03132a;
}
.box-with-badge--primary:hover .box-with-badge__badge--primary {
  background-color: #03132a;
}
.box-with-badge--primary.box-with-badge--not-allowed:hover {
  border-color: #073572;
}
.box-with-badge--primary.box-with-badge--not-allowed:hover .box-with-badge__badge {
  background-color: #073572;
}
.box-with-badge__badge--primary {
  background-color: #073572;
}
.box-with-badge--green {
  border-color: #7ed320;
}
.box-with-badge--green:hover {
  border-color: #569116;
}
.box-with-badge--green:hover .box-with-badge__badge--green {
  background-color: #569116;
}
.box-with-badge--green.box-with-badge--not-allowed:hover {
  border-color: #7ed320;
}
.box-with-badge--green.box-with-badge--not-allowed:hover .box-with-badge__badge {
  background-color: #7ed320;
}
.box-with-badge__badge--green {
  background-color: #7ed320;
}
.box-with-badge--light-green {
  border-color: #b9e8b9;
}
.box-with-badge--light-green:hover {
  border-color: #7fd57f;
}
.box-with-badge--light-green:hover .box-with-badge__badge--light-green {
  background-color: #7fd57f;
}
.box-with-badge--light-green.box-with-badge--not-allowed:hover {
  border-color: #b9e8b9;
}
.box-with-badge--light-green.box-with-badge--not-allowed:hover .box-with-badge__badge {
  background-color: #b9e8b9;
}
.box-with-badge__badge--light-green {
  background-color: #b9e8b9;
}
.box-with-badge--light-orange {
  border-color: #f7971d;
}
.box-with-badge--light-orange:hover {
  border-color: #c16f07;
}
.box-with-badge--light-orange:hover .box-with-badge__badge--light-orange {
  background-color: #c16f07;
}
.box-with-badge--light-orange.box-with-badge--not-allowed:hover {
  border-color: #f7971d;
}
.box-with-badge--light-orange.box-with-badge--not-allowed:hover .box-with-badge__badge {
  background-color: #f7971d;
}
.box-with-badge__badge--light-orange {
  background-color: #f7971d;
}
.box-with-badge--yellow {
  border-color: #ffb700;
}
.box-with-badge--yellow:hover {
  border-color: #b38000;
}
.box-with-badge--yellow:hover .box-with-badge__badge--yellow {
  background-color: #b38000;
}
.box-with-badge--yellow.box-with-badge--not-allowed:hover {
  border-color: #ffb700;
}
.box-with-badge--yellow.box-with-badge--not-allowed:hover .box-with-badge__badge {
  background-color: #ffb700;
}
.box-with-badge__badge--yellow {
  background-color: #ffb700;
}
.box-with-badge--red {
  border-color: #ef5555;
}
.box-with-badge--red:hover {
  border-color: #e21515;
}
.box-with-badge--red:hover .box-with-badge__badge--red {
  background-color: #e21515;
}
.box-with-badge--red.box-with-badge--not-allowed:hover {
  border-color: #ef5555;
}
.box-with-badge--red.box-with-badge--not-allowed:hover .box-with-badge__badge {
  background-color: #ef5555;
}
.box-with-badge__badge--red {
  background-color: #ef5555;
}
.box-with-badge:hover {
  border-color: #073572;
}
.box-with-badge--small {
  width: 80px;
  height: 60px;
}
.box-with-badge--medium {
  width: 100px;
  height: 75px;
}
.box-with-badge--large {
  width: 230px;
  height: 140px;
}
.box-with-badge--not-allowed {
  cursor: not-allowed;
}
.box-with-badge--unavailable {
  cursor: not-allowed;
  opacity: 0.5;
}
.box-with-badge__badge {
  color: #fff;
  font-size: 12px;
  font-weight: bold;
  line-height: 20px;
  text-align: center;
  transition: background-color 200ms ease;
  width: 100%;
}
.box-with-badge__content {
  align-items: center;
  display: flex;
  flex: 1;
  justify-content: center;
  padding-left: 20px;
  padding-right: 20px;
  width: 120px;
}
.box-with-badge__content svg {
  max-height: 50px;
  width: 100%;
}
.box-with-badge--small .box-with-badge__content {
  padding-left: 10px;
  padding-right: 10px;
  width: 80px;
}
.box-with-badge--small .box-with-badge__content svg {
  max-height: 44px;
}
.box-with-badge--medium .box-with-badge__content {
  padding-left: 15px;
  padding-right: 15px;
  width: 100px;
}
.box-with-badge--medium .box-with-badge__content svg {
  max-height: 47px;
}
.box-with-badge__overlay {
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  position: absolute;
  align-items: center;
  background-color: #fff;
  border-radius: 3px;
  color: #62718a;
  display: flex;
  font-size: 11px;
  font-weight: bold;
  justify-content: center;
  opacity: 0;
  padding-left: 10px;
  padding-right: 10px;
  transition: opacity 200ms ease, background-color 200ms ease;
}
.box-with-badge__overlay:hover {
  background-color: rgba(255, 255, 255, 0.8);
  opacity: 1;
}

.changeset-input {
  position: relative;
}
.changeset-input__dropdown {
  border: 1px solid #f38484;
  border-radius: 0 0 5px 5px;
  box-shadow: rgba(0, 0, 0, 0.2) 0 2px 5px -1px;
  font-size: 14px;
  padding: 11px 16px;
  width: 100%;
  word-break: break-word;
}
.changeset-input__dropdown.ember-basic-dropdown-content--below.ember-basic-dropdown--transitioning-in, .changeset-input__dropdown.ember-basic-dropdown-content--below.ember-basic-dropdown--transitioned-in {
  animation: drop-fade-below 0.2s;
}
.changeset-input__dropdown.ember-basic-dropdown-content--above.ember-basic-dropdown--transitioning-in, .changeset-input__dropdown.ember-basic-dropdown-content--above.ember-basic-dropdown--transitioned-in {
  animation: drop-fade-above 0.2s;
}
.changeset-input__dropdown.ember-basic-dropdown-content--below.ember-basic-dropdown--transitioning-out {
  animation: drop-fade-below 0.2s reverse;
}
.changeset-input__dropdown.ember-basic-dropdown-content--above.ember-basic-dropdown--transitioning-out {
  animation: drop-fade-above 0.2s reverse;
}
.changeset-input__dropdown--above {
  border-radius: 5px 5px 0 0;
}
.changeset-input__dropdown.ember-basic-dropdown-content--above {
  margin-top: 1px;
}
.changeset-input__dropdown.ember-basic-dropdown-content--below {
  margin-top: -1px;
}
.changeset-input__dropdown .error {
  color: #423e3e;
  line-height: 1.2em;
  margin: 6px 0;
  padding-left: 12px;
  position: relative;
}
.changeset-input__dropdown .error::before {
  background-color: #423e3e;
  border-radius: 50%;
  content: "";
  display: block;
  height: 5px;
  left: -2px;
  position: absolute;
  top: 6px;
  width: 5px;
}
.changeset-input__dropdown .error:first-child {
  margin-top: 0;
}
.changeset-input__dropdown .error:last-child {
  margin-bottom: 0;
}
.changeset-input__dropdown .error:only-child {
  padding-left: 0;
}
.changeset-input__dropdown .error:only-child::before {
  display: none;
}
.changeset-input__textarea {
  display: block;
  height: auto;
  max-height: 500px;
  max-width: 100%;
  min-height: 40px;
  min-width: 100%;
}
.changeset-input .input-wrap {
  position: relative;
}
.changeset-input .input-wrap.error {
  z-index: 1006;
}
.changeset-input .input-wrap.error input,
.changeset-input .input-wrap.error .changeset-input__textarea {
  border-color: #f16c6c !important;
  color: #ef5555;
}
.changeset-input .input-wrap.error input::-webkit-input-placeholder,
.changeset-input .input-wrap.error .changeset-input__textarea::-webkit-input-placeholder {
  color: #f8b2b2;
}
.changeset-input .input-wrap.error input:-moz-placeholder,
.changeset-input .input-wrap.error .changeset-input__textarea:-moz-placeholder {
  color: #f8b2b2;
}
.changeset-input .input-wrap.error input::-moz-placeholder,
.changeset-input .input-wrap.error .changeset-input__textarea::-moz-placeholder {
  color: #f8b2b2;
}
.changeset-input .input-wrap.error input:-ms-input-placeholder,
.changeset-input .input-wrap.error .changeset-input__textarea:-ms-input-placeholder {
  color: #f8b2b2;
}
.changeset-input .input-wrap.error input:focus,
.changeset-input .input-wrap.error .changeset-input__textarea:focus {
  border-color: #f16c6c;
  border-radius: 5px 5px 0 0 !important;
}
.changeset-input .input-wrap.error.error--above input:focus {
  border-radius: 0 0 5px 5px;
}
.changeset-input__checklist-error {
  align-items: center;
  display: flex;
  font-size: 11px;
  gap: 5px;
}
.changeset-input__checklist-error--invalid {
  color: #ef5555;
}

.checkbox-control {
  color: #404b55;
  cursor: pointer;
  display: flex;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.checkbox-control input {
  display: none;
}
.checkbox-control__container {
  top: 2px;
  position: relative;
  align-items: center;
  background-color: #fff;
  border: 1px solid #b7b7b7;
  border-radius: 3px;
  display: flex;
  height: 16px;
  justify-content: center;
  min-width: 16px;
  transition: background-color 200ms ease, border 200ms ease;
}
.checkbox-control__container--checked {
  background: #073572;
  border-color: #073572;
}
.checkbox-control__container--no-label {
  top: 0;
}
.checkbox-control__icon {
  color: #fff;
  height: 10px;
  width: auto !important;
}
.checkbox-control__description {
  color: #b7b7b7;
  font-size: 14px;
}
.checkbox-control--disabled {
  cursor: default;
  opacity: 0.7;
}
.checkbox-control--disabled .checkbox-control__container {
  background-color: #e6eaec;
  border-color: #d8dee1;
}
.checkbox-control--disabled .checkbox-control__icon {
  color: #b7b7b7;
}

.checkbox-control--toggle {
  display: inline-block;
}
.checkbox-control--toggle.checkbox-control--disabled .checkbox-control__toggle-switch {
  opacity: 0.6;
}
.checkbox-control__toggle-switch {
  width: 40px;
  height: 22px;
  align-items: center;
  background-color: #fff;
  border: 2px solid #d8dee1;
  border-radius: 34px;
  display: flex;
  overflow: hidden;
  position: relative;
  transition: background-color 0.2s ease, border-color 0.2s ease, opacity 0.2s ease;
}
.checkbox-control__toggle-switch::before {
  width: 20px;
  height: 20px;
  background-color: white;
  border: 1px solid #d8dee1;
  border-radius: 50%;
  box-shadow: 0 0 2px 1px rgba(0, 0, 0, 0.1);
  left: -1px;
  position: absolute;
  transition: left 0.2s ease, background-color 0.2s ease;
}
.checkbox-control__toggle-switch--light {
  border-color: #e6eaec;
}
.checkbox-control__toggle-switch--light::before {
  border-color: #e6eaec;
}
.checkbox-control__toggle-switch--checked {
  background-color: #073572;
  border-color: #073572;
}
.checkbox-control__toggle-switch--checked::before {
  background-color: #fff;
  border-color: #fff;
  box-shadow: none;
  content: "";
  left: calc(100% - 20px);
}
.checkbox-control__toggle-switch--large {
  width: 54px;
  height: 30px;
}
.checkbox-control__toggle-switch--large::before {
  width: 26px;
  height: 26px;
}
.checkbox-control__toggle-switch--large.checkbox-control__toggle-switch--checked::before {
  left: calc(100% - 26px);
}

.code-snippet--oneline {
  padding: 10px;
}
.code-snippet--multiline {
  line-height: 1;
  padding: 20px;
}
.code-snippet--inline {
  align-items: center;
  display: inline-flex;
  padding: 0 0 0 10px;
}
.code-snippet__code {
  font-family: monospace;
}
.code-snippet__button-icon {
  margin-right: 2px;
}
.code-snippet--compact {
  align-items: center;
  display: flex;
  height: 40px;
}

.company-picture {
  width: 50px;
  height: 50px;
  background-color: #fff;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100%;
  border: 1px solid #e6eaec;
  border-radius: 5px;
  min-width: 50px;
  position: relative;
}
.company-picture--placeholder::after {
  background: url("/assets/images/icons/building-7ebd54a900ad2dc7b7863ea702b15d74.svg") no-repeat center;
  background-size: 36px auto;
  height: 100%;
  left: 0;
  opacity: 0.13;
  top: 0;
  width: 100%;
}
.company-picture--large {
  width: 120px;
  height: 120px;
  background-size: 100px;
  border-radius: 0;
}
.company-picture--large::after {
  background-size: 62px auto;
  opacity: 0.1;
}
.company-picture--large::before {
  font-size: 46px;
}

.count-label {
  border: 1px solid #9eb2c0;
  border-radius: 30px;
  color: #9eb2c0;
  display: inline-block;
  font-size: 10px;
  line-height: 1.3em;
  min-width: 3em;
  padding: 3px 6px;
  text-align: center;
  transition: border 0.15s ease, color 0.15s ease, opacity 0.2s ease, background-color 0.2s ease;
}
.count-label.active {
  background-color: #073572;
  border: 1px solid #073572;
  color: #fff;
}
.count-label--light {
  border-color: #fff;
  color: #fff;
}
.count-label .count-label-loading {
  top: -1px;
  position: relative;
  display: inline-flex;
  font-size: 6px;
}

.copy-btn {
  background-color: transparent;
  border: none;
  color: #596976;
  cursor: pointer;
  font-size: 13px;
  outline: none;
  transition: color 0.2s ease, background-color 0.2 ease;
}
.copy-btn--field {
  bottom: 0;
  right: 0;
  position: absolute;
  background-color: #fff;
  border: 1px solid #e6eaec;
  border-bottom: 0;
  border-radius: 3px;
  border-bottom-left-radius: 0;
  border-right: 0;
  border-top-right-radius: 0;
  padding: 5px;
}
.copy-btn--field:focus:not(.disabled):not([disabled]), .copy-btn--field:hover:not(.disabled):not([disabled]), .copy-btn--field:active:not(.disabled):not([disabled]), .copy-btn--field--active:not(.disabled):not([disabled]) {
  background-color: #073572;
  color: #fff;
}
.copy-btn--field-inline {
  border: none;
  border-left: 1px solid #e6eaec;
  border-radius: initial;
  margin-left: 10px;
  position: static;
}

.ember-modal-overlay {
  align-items: center;
  display: flex;
  justify-content: center;
  overflow: auto;
  padding: 20px;
  z-index: 1004;
}
.ember-modal-overlay.translucent {
  background-color: rgba(0, 0, 0, 0.3);
}
.ember-modal-overlay.translucent--darken {
  background-color: rgba(0, 0, 0, 0.6);
}

.ember-modal-dialog {
  border-radius: 5px;
  box-shadow: rgba(0, 0, 0, 0.15) 0 0 30px 1px;
  margin: auto 0;
  max-width: 420px;
  min-width: 280px;
  padding: 30px 35px;
  position: relative;
}
.ember-modal-wrapper.emd-static.emd-wrapper-target-attachment-center .ember-modal-dialog {
  left: 0;
  top: 0;
  transform: none;
}

.modal-dialog__action-buttons {
  margin-top: 5px;
}
.modal-dialog__action-buttons button {
  line-height: 10px;
}
.modal-dialog__action-buttons button:first-child {
  margin-right: 0;
}
.modal-dialog__close-btn {
  color: #9eb2c0;
  font-size: 25px;
  padding: 0;
}
.modal-dialog__close-btn:focus:not(.disabled):not([disabled]), .modal-dialog__close-btn:hover:not(.disabled):not([disabled]), .modal-dialog__close-btn:active:not(.disabled):not([disabled]), .modal-dialog__close-btn--active:not(.disabled):not([disabled]) {
  color: #587387;
}

.expandable-section-toggle__wrapper {
  height: 40px;
  position: relative;
}
.expandable-section-toggle__wrapper::after {
  top: 50%;
  left: 0;
  position: absolute;
  width: 100%;
  height: 1px;
  background-color: #e6eaec;
  content: "";
  pointer-events: none;
}
.expandable-section-toggle__content {
  background-color: #fff;
  padding-left: 10px;
  padding-right: 10px;
  position: relative;
  z-index: 20;
}

.feature-teaser {
  position: relative;
}
.feature-teaser__content {
  background: #fafafa;
  border: 1px solid #e6eaec;
  border-left: 3px solid #073572;
  border-radius: 2px;
  padding: 20px;
}
.feature-teaser__headline {
  color: #404b55;
  font-weight: 700;
}
.feature-teaser__description {
  color: #596976;
  font-size: 14px;
}
.feature-teaser__expandable-section-toggle {
  bottom: -19px;
  left: 0;
  position: absolute;
  right: 0;
}

.group-dropdown {
  align-items: center;
  align-self: stretch;
  display: flex;
  position: relative;
}
.group-dropdown .dropdown-menu {
  animation: group-dropdown-show 0.15s ease forwards;
  overflow: hidden;
  padding: 0;
  position: absolute;
  right: 0;
  top: 100%;
  width: 200px;
  z-index: 10;
}
.group-dropdown .dropdown-menu-fade-out {
  animation: group-dropdown-hide 0.15s ease forwards;
}
.group-dropdown .dropdown-menu-wrapper {
  background: #fff;
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
  box-shadow: 0 0 10px rgba(10, 10, 10, 0.5);
  color: #404b55;
  min-height: 100px;
}

.lead-usage-indicator {
  color: #767676;
  font-size: 14px;
  padding-top: 10px;
}
.lead-usage-indicator__data {
  display: flex;
  justify-content: space-between;
}
.lead-usage-indicator__bar {
  background-color: #e6eaec;
  border-radius: 3px;
  height: 5px;
  margin: 8px 0 0;
  position: relative;
  width: 100%;
}
.lead-usage-indicator__bar-value {
  background-color: #073572;
  border-radius: 3px;
  height: 5px;
  left: 0;
  position: absolute;
  top: 0;
}
.lead-usage-indicator__bar-value--warning {
  background-color: #ffa363;
}
.lead-usage-indicator__bar-value--danger {
  background-color: #ef5555;
}
.lead-usage-indicator__message {
  font-size: 12px;
  line-height: 1.4;
  margin-top: 8px;
}
.lead-usage-indicator .load-indicator__spinner {
  height: 26px;
  top: 4px;
}

.load-indicator {
  position: relative;
}
.load-indicator__spinner {
  height: 30px;
  margin: 15px auto;
  width: 19px;
}
.load-indicator__spinner.x-small {
  height: 16px;
  margin-bottom: 0;
  margin-top: 0;
  width: 12px;
}
.load-indicator__spinner.small {
  height: 20px;
  margin-bottom: 5px;
  margin-top: 5px;
  width: 14px;
}
.load-indicator__spinner.large {
  height: 50px;
  width: 30px;
}
.load-indicator__spinner.x-small .load-indicator__circle::before, .load-indicator__spinner.small .load-indicator__circle::before {
  height: 3px;
  width: 2px;
}
.load-indicator__spinner.display-inline {
  display: inline-block;
  margin: 0 12px 0 5px;
  position: relative;
  top: 4px;
}
.load-indicator__spinner.align-left {
  margin-left: 0;
}
.load-indicator__spinner.light .load-indicator__circle::before {
  background-color: #fff;
}
.load-indicator__circle {
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}
.load-indicator__circle::before {
  animation: loadIndicatorCircleFadeDelay 1.2s infinite ease-in-out both;
  background-color: #767676;
  border-radius: 100%;
  content: "";
  display: block;
  height: 15%;
  margin: 0 auto;
  width: 15%;
}
.load-indicator__circle--1 {
  height: 120%;
}
.load-indicator__circle--2 {
  transform: rotate(30deg);
}
.load-indicator__circle--2::before {
  animation-delay: -1.1s;
}
.load-indicator__circle--3 {
  transform: rotate(60deg);
}
.load-indicator__circle--3::before {
  animation-delay: -1s;
}
.load-indicator__circle--4 {
  transform: rotate(90deg);
}
.load-indicator__circle--4::before {
  animation-delay: -0.9s;
}
.load-indicator__circle--5 {
  transform: rotate(120deg);
}
.load-indicator__circle--5::before {
  animation-delay: -0.8s;
}
.load-indicator__circle--6 {
  transform: rotate(150deg);
}
.load-indicator__circle--6::before {
  animation-delay: -0.7s;
}
.load-indicator__circle--7 {
  transform: rotate(180deg);
}
.load-indicator__circle--7::before {
  animation-delay: -0.6s;
}
.load-indicator__circle--8 {
  transform: rotate(210deg);
}
.load-indicator__circle--8::before {
  animation-delay: -0.5s;
}
.load-indicator__circle--9 {
  transform: rotate(240deg);
}
.load-indicator__circle--9::before {
  animation-delay: -0.4s;
}
.load-indicator__circle--10 {
  transform: rotate(270deg);
}
.load-indicator__circle--10::before {
  animation-delay: -0.3s;
}
.load-indicator__circle--11 {
  transform: rotate(300deg);
}
.load-indicator__circle--11::before {
  animation-delay: -0.2s;
}
.load-indicator__circle--12 {
  transform: rotate(330deg);
}
.load-indicator__circle--12::before {
  animation-delay: -0.1s;
}

@keyframes loadIndicatorCircleFadeDelay {
  0%, 39%, 100% {
    opacity: 0;
  }
  40% {
    opacity: 1;
  }
}
.loading-overlay {
  align-items: center;
  background-color: rgba(0, 0, 0, 0.7);
  display: flex;
  height: 100%;
  justify-content: center;
  left: 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 9999;
}
.loading-overlay__logo-wrapper {
  animation: logoLoader 1.2s ease-in-out infinite;
  width: 250px;
}

.media-icon {
  width: 24px;
  height: 24px;
  align-items: center;
  background-color: #fff;
  border: 1px solid transparent;
  border-radius: 50%;
  color: #fff;
  display: flex;
  justify-content: center;
  margin-left: 0;
  margin-right: 0;
  padding: 3px;
}
.media-icon--crunchbase {
  border-color: #2292a7;
  transition: background-color 0.2s ease;
}
.media-icon--crunchbase path {
  fill: #2292a7;
  transition: fill 0.2s ease;
}
.media-icon--crunchbase:hover {
  background-color: #2292a7;
}
.media-icon--crunchbase:hover path {
  fill: #fff;
}
.media-icon--linkedin {
  border-color: #2d7bbd;
  color: #2d7bbd;
  transition: background-color, color 0.2s ease;
  font-size: 14px;
}
.media-icon--linkedin:hover {
  background-color: #2d7bbd;
  color: #fff;
}
.media-icon--twitter {
  border-color: #1da1f2;
  color: #1da1f2;
  transition: background-color, color 0.2s ease;
  font-size: 14px;
}
.media-icon--twitter:hover {
  background-color: #1da1f2;
  color: #fff;
}
.media-icon--facebook {
  border-color: #3b5998;
  color: #3b5998;
  transition: background-color, color 0.2s ease;
  font-size: 13px;
}
.media-icon--facebook:hover {
  background-color: #3b5998;
  color: #fff;
}
.media-icon--google-search {
  background-color: #fff;
  border-color: #073572;
  transition: background-color 0.2s ease;
}
.media-icon--google-search .media-icon__svg-icon {
  position: relative;
  top: 2px;
}
.media-icon--google-search path {
  transition: fill 0.2s ease;
}
.media-icon--google-search:hover {
  background-color: #073572;
  border-color: #073572;
}
.media-icon--google-search:hover path {
  fill: #fff;
}
.media-icon--yandex {
  border-color: red;
  transition: background-color 0.2s ease;
}
.media-icon--yandex path {
  fill: red;
  transition: fill 0.2s ease;
}
.media-icon--yandex:hover {
  background-color: red;
}
.media-icon--yandex:hover path {
  fill: #fff;
}
.media-icon--baidu {
  border-color: #2319dc;
  transition: background-color 0.2s ease;
}
.media-icon--baidu path {
  fill: #2319dc;
  transition: fill 0.2s ease;
}
.media-icon--baidu:hover {
  background-color: #2319dc;
}
.media-icon--baidu:hover path {
  fill: #fff;
}
.media-icon--github {
  border-color: #24292f;
  color: #24292f;
  transition: background-color, color 0.2s ease;
}
.media-icon--github:hover {
  background-color: #24292f;
  color: #fff;
}

.premium-teaser {
  display: inline-block;
  position: relative;
}
.premium-teaser.block {
  display: block;
}
.premium-teaser__toggle-wrapper {
  width: 100%;
  height: 100%;
  cursor: default;
  display: inline-block;
}

#premium-teaser-wormhole {
  position: absolute;
  transition-duration: 0.3s;
  transition-property: top left;
  transition-timing-function: ease;
  z-index: 2000;
}

.premium-teaser-bubble {
  animation: bubble-appear 0.5s ease;
  background: #fafafa;
  border-radius: 4px;
  box-shadow: rgba(0, 0, 0, 0.2) 0 1px 16px -1px;
  display: inline-block;
  height: auto;
  padding: 14px;
  position: relative;
  white-space: normal;
  width: 180px;
  z-index: 11;
}
.premium-teaser-bubble::before {
  content: "";
  position: absolute;
}
.premium-teaser-bubble.bottom {
  transform-origin: 50% 0%;
}
.premium-teaser-bubble.bottom::before {
  0width: 0;
  0height: 0;
  display: block;
  border-bottom: 8px solid #fafafa;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  left: 50%;
  margin-left: -6px;
  top: -7px;
}
.premium-teaser-bubble.left {
  transform-origin: 100% 50%;
}
.premium-teaser-bubble.left::before {
  0width: 0;
  0height: 0;
  display: block;
  border-bottom: 8px solid transparent;
  border-left: 8px solid #fafafa;
  border-top: 8px solid transparent;
  margin-top: -8px;
  right: -8px;
  top: 50%;
}
.premium-teaser-bubble.right {
  transform-origin: 0% 0%;
}
.premium-teaser-bubble.right::before {
  0width: 0;
  0height: 0;
  display: block;
  border-bottom: 8px solid transparent;
  border-right: 8px solid #fafafa;
  border-top: 8px solid transparent;
  left: -8px;
  margin-top: -8px;
  top: 50%;
}
.premium-teaser-bubble.top {
  transform-origin: 50% 100%;
}
.premium-teaser-bubble.top::before {
  0width: 0;
  0height: 0;
  display: block;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-top: 8px solid #fafafa;
  bottom: -8px;
  left: 50%;
  margin-left: -8px;
}
.premium-teaser-bubble.top-right {
  transform-origin: 0% 10%;
}
.premium-teaser-bubble.top-right::before {
  0width: 0;
  0height: 0;
  display: block;
  border-bottom: 8px solid transparent;
  border-right: 8px solid #fafafa;
  border-top: 8px solid transparent;
  left: -8px;
  top: 20px;
}
.premium-teaser-bubble div.header {
  color: #423e3e;
  font-size: 14px;
  font-weight: bold;
  text-align: center;
}
.premium-teaser-bubble div.content {
  color: #423e3e;
  font-size: 13px;
  padding: 6px;
  text-align: center;
}
.premium-teaser-bubble div.content p {
  padding: 6px;
}

.prospect-lists-icon__trigger {
  color: #8c9eab;
  display: inline;
}
.prospect-lists-icon__content {
  padding: 0;
  z-index: 1004;
}
.prospect-lists-icon__table {
  max-height: 250px;
  overflow: hidden;
}
.prospect-lists-icon__table-cell {
  max-width: 200px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  width: 200px;
}

.server-error-message {
  background: #ffe8e4;
  border-radius: 5px;
  color: #931e15;
  font-size: 15px;
  margin: 10px 0;
  padding: 13px 18px;
}
.server-error-message:first-child {
  margin-bottom: 15px;
  margin-top: 0;
}

.full-page-error-base .error-details {
  margin: 15px auto 25px;
}
.full-page-error-base .error-details-wrapper {
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  position: fixed;
  align-items: center;
  background-color: #474747;
  color: #fff;
  display: flex;
  flex-direction: column;
  font-size: 22px;
  justify-content: center;
  text-align: center;
  z-index: 9999;
}

.help-icon {
  color: #62718a;
  margin-left: 1px;
}

.scrollable-view {
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  position: absolute;
  /* Scroll momentum on touch devices */
  /* stylelint-disable-next-line property-no-unknown */
  -webkit-overflow-scrolling: touch;
  overflow-scrolling: touch;
  overflow-y: scroll;
}
.scrollable-view__content {
  position: relative;
}

.code-snippet--oneline {
  padding: 10px;
}
.code-snippet--multiline {
  line-height: 1;
  padding: 20px;
}
.code-snippet--inline {
  align-items: center;
  display: inline-flex;
  padding: 0 0 0 10px;
}
.code-snippet__code {
  font-family: monospace;
}
.code-snippet__button-icon {
  margin-right: 2px;
}
.code-snippet--compact {
  align-items: center;
  display: flex;
  height: 40px;
}

.icon-button {
  align-items: center;
  color: #596976;
  display: flex;
  font-weight: normal;
  justify-content: center;
  position: relative;
  text-decoration: none;
  transition: color 0.2s ease;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.icon-button--without-label {
  width: 33px;
  height: 33px;
}
.icon-button--with-label {
  border: 1px solid #e6eaec;
  border-radius: 5px;
  padding: 4px 6px;
}
.icon-button--with-label .icon {
  color: #b7b7b7;
  margin-right: 0;
}
.icon-button:hover, .icon-button.active {
  border-color: #073572;
}
.icon-button:hover .icon-button__icon, .icon-button.active .icon-button__icon {
  color: #073572;
}
.icon-button:disabled {
  color: #e6eaec;
  cursor: default;
}
.icon-button:disabled:hover .icon-button__icon {
  color: #e6eaec;
}
.icon-button--blue {
  color: #073572;
}
.icon-button--blue:hover {
  color: black;
}

/* Add margin if there are not only icon buttons in a row */
button:not(.icon-button) + .icon-button {
  margin-left: 7px;
}

.button-group-selection__item {
  border: 1px solid #d7dde2;
  display: block;
  font-size: 15px;
  margin-bottom: -1px;
  padding: 11px 18px;
  text-align: left;
  transition: color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
  width: 100%;
}
.button-group-selection__item:hover, .button-group-selection__item.active {
  color: #fff;
  cursor: pointer;
}
.button-group-selection__item:hover {
  background-color: #073572;
  border-color: #073572;
}
.button-group-selection__item:hover:not(:last-child) + button {
  border-top-color: #073572;
}
.button-group-selection__item.active {
  background-color: #05234c;
  border-color: #05234c;
}
.button-group-selection__item.active:not(:last-child) + button {
  border-top-color: #05234c;
}
.button-group-selection__item:focus {
  border-color: #073572;
  outline: 0;
}
.button-group-selection__item:focus:not(:last-child) + button {
  border-top-color: #073572;
}
.button-group-selection__item:first-child {
  border-radius: 3px 3px 0 0;
}
.button-group-selection__item:last-child {
  border-radius: 0 0 3px 3px;
  margin-bottom: 0;
}

.skeleton-loader {
  background-color: #e6eaec;
  border-radius: 5px;
  height: 10px;
  min-height: 10px;
  overflow: hidden;
  position: relative;
  width: 100%;
}
.skeleton-loader::before {
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  position: absolute;
  animation: shimmer 1s ease-in-out infinite;
  background-image: linear-gradient(90deg, rgba(255, 255, 255, 0) 0, rgba(255, 255, 255, 0.2) 20%, rgba(255, 255, 255, 0.5) 60%, rgba(255, 255, 255, 0));
  min-height: 7px;
  transform: translateX(-100%);
}

.status-indicator {
  align-items: center;
  border: 1px solid #9eb2c0;
  border-radius: 30px;
  display: inline-flex;
  font-size: 11px;
  font-weight: bold;
  height: 24px;
  min-width: 3em;
  padding: 3px 10px;
  position: relative;
  transition: none;
  white-space: nowrap;
}
.status-indicator::before {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  content: "";
  display: inline-block;
  margin-right: 3px;
}
.status-indicator--success {
  border-color: #73c11d;
  color: #73c11d;
}
.status-indicator--success::before {
  background-color: #73c11d;
}
.status-indicator--danger {
  border-color: #ef5555;
  color: #ef5555;
}
.status-indicator--danger::before {
  background-color: #ef5555;
}
.status-indicator--warning {
  border-color: #ffa363;
  color: #ffa363;
}
.status-indicator--warning::before {
  background-color: #ffa363;
}
.status-indicator--neutral {
  border-color: #8c9eab;
  color: #8c9eab;
}
.status-indicator--neutral::before {
  background-color: #8c9eab;
}
.status-indicator--dot-outline::before {
  background-color: transparent;
  border: 1px solid currentColor;
}

.tooltip-decorator__trigger {
  cursor: inherit;
}
.tooltip-decorator__content {
  background: #617281;
  border: 1px solid #6c7e8f;
  border-radius: 4px;
  box-shadow: none;
  color: #fff;
  font-size: 11px;
  line-height: 1.4;
  padding: 4px 7px !important;
  text-align: center;
  z-index: 2000;
  pointer-events: none;
}
.tooltip-decorator__content.ember-basic-dropdown-content--above::before {
  border: none;
  bottom: -5px;
}
.tooltip-decorator__content.ember-basic-dropdown-content--below::before {
  border: none;
  top: -5px;
}
.tooltip-decorator__content::before {
  width: 10px;
  height: 10px;
  background-color: #617281;
  display: block !important;
}
.tooltip-decorator__content--fixed-width {
  white-space: normal;
  width: 228px;
  word-wrap: break-word;
}
.tooltip-decorator__content-tooltip-text {
  white-space: pre-line;
}
.tooltip-decorator__content {
  font-size: 14px;
  padding: 16px !important;
}

.info-hint {
  display: flex;
  margin-bottom: 20px;
}
.info-hint__icon {
  font-size: 14px;
  margin-left: 0;
  margin-right: 5px;
  margin-top: 3px;
}

.progress-bar[value] {
  width: 100%;
  height: 5px;
  /* Reset the default appearance */
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  /* Get rid of default border in Firefox. */
  border: none;
  border-radius: 3px;
  color: #073572;
}
.progress-bar[value]::-webkit-progress-bar {
  background-color: #e6eaec;
  border-radius: 3px;
  overflow: hidden;
}
.progress-bar[value]::-webkit-progress-value {
  background-color: #073572;
  border-radius: 3px;
}
.progress-bar[value]::-moz-progress-bar {
  background-color: #073572;
  border-radius: 3px;
}

.required-fields-legend__legend {
  font-size: 14px;
  font-style: italic;
}

.flash-notification {
  align-items: center;
  background-color: #404b55;
  border-top: 1px solid #353e46;
  color: #fff;
  display: flex;
  font-size: 16px;
  min-height: 60px;
  padding: 12px 50px 12px 20px;
  position: relative;
  transition: background-color 0.3s ease;
  position: fixed;
  will-change: transform, opacity;
  z-index: 1002;
}
.flash-notification__close {
  cursor: pointer;
  flex-shrink: 0;
  padding: 10px;
  position: absolute;
  right: 10px;
  transition: color 0.2s, opacity 0.2s;
}
.flash-notification__close:hover {
  color: #404b55;
  opacity: 0.6;
}
.flash-notification--success {
  background-color: #62c462;
  border-top: 1px solid #4fbd4f;
}
.flash-notification--danger {
  background-color: #da595b;
  border-top: 1px solid #d54446;
}
.flash-notification__action-button {
  background-color: transparent !important;
  margin-left: 5px;
}
.flash-notification--major {
  animation: slideDown 0.18s ease-out;
  left: 0;
  margin-left: auto;
  margin-right: auto;
  right: 0;
  width: 100%;
}
.flash-notification--major.flash-notification--exiting {
  animation: slideUp 0.18s ease-in;
}
.flash-notifications-container-top-layer .flash-notification--major {
  left: 0;
  max-width: 100%;
  right: 0;
  z-index: 10000;
}
.flash-notification--minor {
  animation: moveOpen 0.15s;
  bottom: 20px;
  padding-right: 70px;
  right: 100px;
}
.flash-notification--minor.flash-notification--exiting {
  animation: moveClose 0.15s;
}
.flash-notifications-container-top-layer .flash-notification--minor {
  z-index: 10000;
}
.flash-notification.flash-notification--exiting {
  animation-fill-mode: forwards;
}
.flash-notification__custom-action-link {
  color: #fff;
  text-decoration: underline;
}

@keyframes moveOpen {
  from {
    opacity: 0;
    transform: translate(0, 10px);
  }
  to {
    opacity: 1;
    transform: translate(0, 0);
  }
}
@keyframes moveClose {
  from {
    opacity: 1;
    transform: translate(0, 0);
  }
  to {
    opacity: 0;
    transform: translate(0, 10px);
  }
}
@keyframes slideDown {
  from {
    opacity: 0;
    transform: translate(0, -60px);
  }
  to {
    opacity: 1;
    transform: translate(0, 0);
  }
}
@keyframes slideUp {
  from {
    opacity: 1;
    transform: translate(0, 0);
  }
  to {
    opacity: 0;
    transform: translate(0, -60px);
  }
}
.static-notification {
  align-items: center;
  background-color: #404b55;
  border-top: 1px solid #353e46;
  color: #fff;
  display: flex;
  font-size: 16px;
  min-height: 60px;
  padding: 12px 50px 12px 20px;
  position: relative;
  transition: background-color 0.3s ease;
}
.static-notification__close {
  cursor: pointer;
  flex-shrink: 0;
  padding: 10px;
  position: absolute;
  right: 10px;
  transition: color 0.2s, opacity 0.2s;
}
.static-notification__close:hover {
  color: #404b55;
  opacity: 0.6;
}
.static-notification--success {
  background-color: #62c462;
  border-top: 1px solid #4fbd4f;
}
.static-notification--danger {
  background-color: #da595b;
  border-top: 1px solid #d54446;
}
.static-notification__action-button {
  background-color: transparent !important;
  margin-left: 5px;
}
.static-notification:first-child {
  border-top: none;
}
.static-notification:not(:first-child) {
  display: none;
}
.static-notification--feature {
  background-color: #ff9b56;
  border-top: 1px solid #ff8c3d;
}
.static-notification--info {
  background-color: #073572;
  border-top: 1px solid #062a5a;
}
.static-notification--warning {
  background-color: #f5a623;
  border-top: 1px solid #f39c0b;
}

.static-notifications-container {
  margin: 0 auto;
  min-width: 1230px;
  position: relative;
  width: 100%;
  z-index: 1001;
}

.badge {
  background-color: #073572;
  border-radius: 5px;
  color: #fff;
  display: inline-block;
  font-size: 0.8em;
  font-weight: 700;
  padding: 2px 10px;
  text-transform: uppercase;
}

.info-card {
  border: 1px solid #e6eaec;
  border-radius: 3px;
  flex: initial;
  margin: 0 1%;
  width: 32%;
}
.info-card--warning {
  border-color: #e2db6b;
}
.info-card--danger {
  border-color: #da595b;
}
.info-card:first-child {
  margin-left: 0;
}
.info-card:last-child {
  margin-right: 0;
}
.info-card__header {
  align-items: center;
  background-color: #fafcfc;
  border-bottom: 1px solid #e6eaec;
  border-radius: 3px 3px 0 0;
  color: #8c9eab;
  display: flex;
  font-size: 11px;
  font-weight: bold;
  min-height: 40px;
  padding: 5px 18px;
  text-transform: uppercase;
}
.info-card__header > *:first-child {
  margin-right: 6px;
}
.info-card--warning .info-card__header {
  background-color: #fffeed;
  border-color: #e2db6b;
  color: #f5a623;
}
.info-card--danger .info-card__header {
  background-color: #fbefef;
  border-color: #da595b;
  color: #ef5555;
}
.info-card__icon {
  font-size: 13px;
}
.info-card__content {
  color: #8c9eab;
  font-size: 14px;
  line-height: 1.4;
  padding: 18px;
}
.info-card--warning .info-card__content {
  border-color: #e2db6b;
  color: #404b55;
}
.info-card--danger .info-card__content {
  border-color: #da595b;
  color: #404b55;
}
.info-card__subsection {
  margin-top: 10px;
}
.info-card__subsection:first-child {
  margin-top: 0;
}
.info-card__subsection-header {
  color: #596976;
  display: block;
}
.info-card__subsection p {
  line-height: 1.45;
}
.info-card__subsection p + p {
  margin-top: 10px;
}
.info-card ul {
  list-style-type: disc;
  margin-bottom: 12px;
}
.info-card ul:not(:first-child) {
  margin-top: 8px;
}
.info-card ul li {
  margin-left: 20px;
}

.credit-card-preview {
  align-items: center;
  display: flex;
}
.credit-card-preview__cc-icon {
  color: #9eb2c0;
  font-size: 32px;
  margin: 0;
  width: 42px;
}
.credit-card-preview__cc-data {
  display: flex;
  flex-flow: column wrap;
  margin-left: 10px;
}
.credit-card-preview__cc-number {
  color: #62718a;
  font-size: 12px;
  line-height: 1;
}

/**
 * Button classes that can be applied to `<a>`, `<button>`, `<input>`, etc. elements.
 * Automatically applied to `<FLinkTo>` & `<Platform::Button>` components via their `@appearance` arguments.
 * Example usage: <button class="button button-default-size button-filled" type="button">
 * @see https://www.figma.com/file/7cm0DOEGHPoxEqhbE9zkKY/Buttons?node-id=0%3A1&t=pLzHW9PnAG425zOB-1
 */
/**
 * Link classes that can be applied to `<a>`, `<button>`, `<LinkTo>`, etc.
 * Automatically applied to the `<FLinkTo @argument="link-blue-light-mode">` component via the `@appearance` argument.
 * Example usage: <a class="link link-grey-light-mode" href="#">
 * @see https://www.figma.com/file/v4NfW4ndQkKGgUxuHWwjwy/Links?t=vU7DImV43aBBIKor-1
 */
.h-flex {
  display: flex;
}
.h-flex--dir-row {
  flex-direction: row;
}
.h-flex--dir-column {
  flex-direction: column;
}
.h-flex--gap-single {
  gap: 10px;
}
.h-flex--gap-single-compat.h-flex--dir-row:not(.flex-row-reverse) > *:not(:first-child) {
  margin-left: 10px !important;
}
.h-flex--gap-single-compat.h-flex--dir-row.flex-row-reverse > *:not(:last-child) {
  margin-left: 10px !important;
}
.h-flex--gap-single-compat.h-flex--dir-column:not(.flex-row-reverse) > *:not(:first-child) {
  margin-top: 10px !important;
}
.h-flex--gap-single-and-half {
  gap: 15px;
}
.h-flex--gap-single-and-half-compat.h-flex--dir-row:not(.flex-row-reverse) > *:not(:first-child) {
  margin-left: 15px !important;
}
.h-flex--gap-single-and-half-compat.h-flex--dir-row.flex-row-reverse > *:not(:last-child) {
  margin-left: 15px !important;
}
.h-flex--gap-single-and-half-compat.h-flex--dir-column:not(.flex-row-reverse) > *:not(:first-child) {
  margin-top: 15px !important;
}
.h-flex--gap-double-and-half {
  gap: 25px;
}
.h-flex--gap-double-and-half-compat.h-flex--dir-row:not(.flex-row-reverse) > *:not(:first-child) {
  margin-left: 25px !important;
}
.h-flex--gap-double-and-half-compat.h-flex--dir-row.flex-row-reverse > *:not(:last-child) {
  margin-left: 25px !important;
}
.h-flex--gap-double-and-half-compat.h-flex--dir-column:not(.flex-row-reverse) > *:not(:first-child) {
  margin-top: 25px !important;
}
.h-flex--gap-double {
  gap: 20px;
}
.h-flex--gap-double-compat.h-flex--dir-row:not(.flex-row-reverse) > *:not(:first-child) {
  margin-left: 20px !important;
}
.h-flex--gap-double-compat.h-flex--dir-row.flex-row-reverse > *:not(:last-child) {
  margin-left: 20px !important;
}
.h-flex--gap-double-compat.h-flex--dir-column:not(.flex-row-reverse) > *:not(:first-child) {
  margin-top: 20px !important;
}
.h-flex--gap-half {
  gap: 5px;
}
.h-flex--gap-half-compat.h-flex--dir-row:not(.flex-row-reverse) > *:not(:first-child) {
  margin-left: 5px !important;
}
.h-flex--gap-half-compat.h-flex--dir-row.flex-row-reverse > *:not(:last-child) {
  margin-left: 5px !important;
}
.h-flex--gap-half-compat.h-flex--dir-column:not(.flex-row-reverse) > *:not(:first-child) {
  margin-top: 5px !important;
}
.h-flex--gap-triple {
  gap: 30px;
}
.h-flex--gap-triple-compat.h-flex--dir-row:not(.flex-row-reverse) > *:not(:first-child) {
  margin-left: 30px !important;
}
.h-flex--gap-triple-compat.h-flex--dir-row.flex-row-reverse > *:not(:last-child) {
  margin-left: 30px !important;
}
.h-flex--gap-triple-compat.h-flex--dir-column:not(.flex-row-reverse) > *:not(:first-child) {
  margin-top: 30px !important;
}
.h-flex--gap-quadruple {
  gap: 40px;
}
.h-flex--gap-quadruple-compat.h-flex--dir-row:not(.flex-row-reverse) > *:not(:first-child) {
  margin-left: 40px !important;
}
.h-flex--gap-quadruple-compat.h-flex--dir-row.flex-row-reverse > *:not(:last-child) {
  margin-left: 40px !important;
}
.h-flex--gap-quadruple-compat.h-flex--dir-column:not(.flex-row-reverse) > *:not(:first-child) {
  margin-top: 40px !important;
}
.h-flex--gap-fifth {
  gap: 2px;
}
.h-flex--gap-fifth-compat.h-flex--dir-row:not(.flex-row-reverse) > *:not(:first-child) {
  margin-left: 2px !important;
}
.h-flex--gap-fifth-compat.h-flex--dir-row.flex-row-reverse > *:not(:last-child) {
  margin-left: 2px !important;
}
.h-flex--gap-fifth-compat.h-flex--dir-column:not(.flex-row-reverse) > *:not(:first-child) {
  margin-top: 2px !important;
}
.h-flex--gap-none {
  gap: 0;
}
.h-flex--gap-none-compat.h-flex--dir-row:not(.flex-row-reverse) > *:not(:first-child) {
  margin-left: 0 !important;
}
.h-flex--gap-none-compat.h-flex--dir-row.flex-row-reverse > *:not(:last-child) {
  margin-left: 0 !important;
}
.h-flex--gap-none-compat.h-flex--dir-column:not(.flex-row-reverse) > *:not(:first-child) {
  margin-top: 0 !important;
}
.h-flex--wrap {
  flex-wrap: wrap;
}
.h-flex--nowrap {
  flex-wrap: nowrap;
}
.h-flex--wrap-reverse {
  flex-wrap: wrap-reverse;
}

/* prettier-ignore */
.color-picker-dropdown {
  max-width: 180px;
  padding: 5px;
}
.color-picker__btn {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  font-size: 14px;
  min-height: 0;
}

.crm-connect-dialog__description {
  line-height: 1.3em;
  margin-bottom: 15px;
}

.crm-integration__details {
  font-size: 16px;
  line-height: 1.8em;
  margin-top: -6px;
  width: 100%;
}
.crm-integration__details button {
  margin: 0 3px;
}
.crm-integration__details__modify-connection {
  display: block;
  font-size: 14px;
}
.crm-integration__matches-container {
  margin-bottom: 15px;
  margin-top: -8px;
}
.crm-integration__matches-container td {
  padding: 4px 0;
  vertical-align: middle;
}
.crm-integration__matches-container td:first-child {
  padding-right: 15px;
}
.crm-integration__footer {
  font-size: 14px;
  line-height: 1.5em;
  padding-bottom: 2px;
}
.crm-integration__footer button {
  margin: 0 3px;
}
.crm-integration__footer-icon {
  color: #62718a;
  font-size: 16px;
  margin-bottom: -1px;
  margin-right: 4px;
}
.crm-integration__confirm-button {
  white-space: nowrap;
}

.crm-create-opportunity label,
.crm-create-task label {
  display: block;
  font-weight: bold;
}
.crm-create-opportunity input,
.crm-create-opportunity .ember-power-select-trigger,
.crm-create-task input,
.crm-create-task .ember-power-select-trigger {
  width: 100%;
}

.crm-dashboard {
  max-width: 100%;
}

.crm-create-opportunity,
.crm-create-task,
.crm-dashboard,
.crm-match-connect {
  position: relative;
}

.crm-sync-status {
  align-items: center;
  animation: appear 0.3s ease;
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: 5px;
  bottom: 0;
  display: flex;
  justify-content: center;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 3;
}
.crm-sync-status .crm-sync-status-align {
  margin: 24px 0;
  text-align: center;
}

.crm-create-task-due-date-priority-row {
  flex-wrap: wrap;
}
.crm-create-task-due-date {
  flex: 0 0 270px;
}
.crm-create-task-due-time {
  flex: 0 0 150px;
  padding-top: 26px;
}

.crm-create-opportunity-close-date {
  width: 270px;
}

.promote-crm a.external-link {
  margin-left: 0.5em;
}

.crm-error-message {
  margin-bottom: 10px;
}

.crm-table-automation-icon--link {
  color: #0a0a0a;
}

.crm-modify-dialog {
  position: relative;
}

.crm-lead-creator__bottom-form {
  flex-wrap: wrap;
}
@media (max-width: 1200px) {
  .crm-lead-creator__bottom-input-last {
    margin-right: 0;
  }
  .crm-lead-creator__connect-btn {
    flex-basis: 100%;
    margin-top: 8px;
  }
}

.custom-feed-details__filters-dropdown .lead-only-info {
  font-style: italic;
}
.custom-feed-details__dropdown-header {
  align-items: center;
  background-color: #f7f9f9;
  border-bottom: 1px solid #e6eaec;
  display: flex;
  font-weight: bold;
  justify-content: space-between;
  padding: 9px 10px;
}
.custom-feed-details__dropdown-header a {
  font-weight: bold;
}
.custom-feed-details__dropdown-header .icon-fa-slack {
  font-size: 15px;
  top: 1px;
}
.custom-feed-details__filters-dropdown, .custom-feed-details__subscribers-dropdown, .custom-feed-details__slack-dropdown, .custom-feed-details__workflows-dropdown {
  font-size: 14px;
  padding: 0;
}
.custom-feed-details__filters-dropdown::before, .custom-feed-details__subscribers-dropdown::before, .custom-feed-details__slack-dropdown::before, .custom-feed-details__workflows-dropdown::before {
  background-color: #f7f9f9;
}
.custom-feed-details__filters-dropdown > .content, .custom-feed-details__subscribers-dropdown > .content, .custom-feed-details__slack-dropdown > .content, .custom-feed-details__workflows-dropdown > .content {
  max-height: 35vh;
  min-width: 170px;
  overflow-y: auto;
}
.custom-feed-details__filters-dropdown > .content table, .custom-feed-details__subscribers-dropdown > .content table, .custom-feed-details__slack-dropdown > .content table, .custom-feed-details__workflows-dropdown > .content table {
  width: 100%;
}
.custom-feed-details__filters-dropdown h5, .custom-feed-details__subscribers-dropdown h5, .custom-feed-details__slack-dropdown h5, .custom-feed-details__workflows-dropdown h5 {
  margin-bottom: 0;
}
.custom-feed-details__filters-dropdown h5 i, .custom-feed-details__subscribers-dropdown h5 i, .custom-feed-details__slack-dropdown h5 i, .custom-feed-details__workflows-dropdown h5 i {
  margin-left: 0;
}
.custom-feed-details__filters-dropdown ul, .custom-feed-details__subscribers-dropdown ul, .custom-feed-details__slack-dropdown ul, .custom-feed-details__workflows-dropdown ul {
  font-size: 13px;
}
.custom-feed-details__filters-dropdown ul li, .custom-feed-details__subscribers-dropdown ul li, .custom-feed-details__slack-dropdown ul li, .custom-feed-details__workflows-dropdown ul li {
  padding: 5px 10px;
}
.custom-feed-details__filters-dropdown ul li:nth-child(even), .custom-feed-details__subscribers-dropdown ul li:nth-child(even), .custom-feed-details__slack-dropdown ul li:nth-child(even), .custom-feed-details__workflows-dropdown ul li:nth-child(even) {
  background-color: rgba(230, 234, 236, 0.3);
}
.custom-feed-details__filters-dropdown.ember-basic-dropdown-content--left.ember-basic-dropdown-content--below, .custom-feed-details__subscribers-dropdown.ember-basic-dropdown-content--left.ember-basic-dropdown-content--below, .custom-feed-details__slack-dropdown.ember-basic-dropdown-content--left.ember-basic-dropdown-content--below, .custom-feed-details__workflows-dropdown.ember-basic-dropdown-content--left.ember-basic-dropdown-content--below {
  margin-left: -6px;
}
.custom-feed-details__filters-dropdown.ember-basic-dropdown-content--left.ember-basic-dropdown-content--above, .custom-feed-details__subscribers-dropdown.ember-basic-dropdown-content--left.ember-basic-dropdown-content--above, .custom-feed-details__slack-dropdown.ember-basic-dropdown-content--left.ember-basic-dropdown-content--above, .custom-feed-details__workflows-dropdown.ember-basic-dropdown-content--left.ember-basic-dropdown-content--above {
  margin-left: -9px;
}
.custom-feed-details__filters-dropdown.ember-basic-dropdown-content--left.ember-basic-dropdown-content--above::before, .custom-feed-details__subscribers-dropdown.ember-basic-dropdown-content--left.ember-basic-dropdown-content--above::before, .custom-feed-details__slack-dropdown.ember-basic-dropdown-content--left.ember-basic-dropdown-content--above::before, .custom-feed-details__workflows-dropdown.ember-basic-dropdown-content--left.ember-basic-dropdown-content--above::before {
  background-color: #fff;
}
.custom-feed-details__subscribers-dropdown i, .custom-feed-details__slack-dropdown i, .custom-feed-details__workflows-dropdown i {
  margin-right: 5px;
}
.custom-feed-details__subscribers-dropdown .table__header, .custom-feed-details__slack-dropdown .table__header, .custom-feed-details__workflows-dropdown .table__header {
  background-color: #fff;
  border-bottom: 1px solid rgba(230, 234, 236, 0.5);
}
.custom-feed-details__subscribers-dropdown .table__header,
.custom-feed-details__subscribers-dropdown .table__cell, .custom-feed-details__slack-dropdown .table__header,
.custom-feed-details__slack-dropdown .table__cell, .custom-feed-details__workflows-dropdown .table__header,
.custom-feed-details__workflows-dropdown .table__cell {
  padding: 5px 10px;
}
.custom-feed-details__subscribers-dropdown .table__cell, .custom-feed-details__slack-dropdown .table__cell, .custom-feed-details__workflows-dropdown .table__cell {
  font-size: 12px !important;
}
.custom-feed-details__subscribers-dropdown i {
  top: -1px;
}

.desktop-recommended-modal {
  width: 350px;
}
.ember-modal-wrapper.emd-static.emd-wrapper-target-attachment-center .desktop-recommended-modal__wrapper.ember-modal-dialog {
  max-width: none;
  transform: scale(1.5);
}
@media (max-width: 700px) {
  .ember-modal-wrapper.emd-static.emd-wrapper-target-attachment-center .desktop-recommended-modal__wrapper.ember-modal-dialog {
    transform: scale(2);
  }
}
.desktop-recommended-modal__description {
  color: #767676;
  margin-bottom: 15px;
}
.desktop-recommended-modal__button {
  width: 80px;
}

.email-lead section {
  margin-bottom: 20px;
}
.email-lead .ember-power-select-trigger {
  margin-right: 0;
}
.email-lead-history {
  margin-top: 30px;
}
.email-lead-history .simple-table {
  margin-top: 8px;
}
.email-lead-history .simple-table td:last-child {
  width: 180px;
}

.email-recipients-list {
  margin: -2px -1px;
  padding-top: 20px;
}

.email-labels-list {
  margin: -2px -1px;
  padding-top: 7px;
}
.email-labels-list .email-label {
  margin: 2px 1px;
}

.email-validation-error {
  line-height: 1;
  margin: 8px 0;
  min-height: 1em;
}

.email-label {
  border: 1px solid #b7b7b7;
  border-radius: 5px;
  color: #62718a;
  display: inline-block;
  font-size: 12px;
  padding: 8px 10px;
}
.email-label .icon {
  cursor: pointer;
  font-size: 10px;
  margin-left: 4px;
}

.email-message {
  margin-top: 8px;
  max-width: 100%;
  min-height: 100px;
  width: 100%;
}

.user-email-multiselect {
  align-items: center;
  margin-bottom: 10px;
  min-height: 40px;
}
.user-email-multiselect .ember-power-select-multiple-option {
  font-size: 12px;
  height: auto;
  padding-bottom: 0.25em;
  padding-top: 0.25em;
}

.export-timeline {
  min-width: 570px;
}
.export-timeline__inputs-group {
  display: grid;
  grid-template-columns: 100px auto;
  row-gap: 20px;
}

.feature-highlight {
  animation: bubble-appear 0.5s ease;
  background-color: #fff;
  border: 1px solid #e4e4e4;
  border-radius: 3px;
  bottom: 100%;
  box-shadow: rgba(0, 0, 0, 0.2) 0 1px 16px -1px;
  cursor: default;
  font-size: 14px;
  left: 0;
  line-height: 1.3em;
  padding: 15px;
  position: absolute;
  text-align: left;
  width: 300px;
  z-index: 100;
}
.feature-highlight::before, .feature-highlight::after {
  border: solid transparent;
  height: 0;
  left: 20px;
  pointer-events: none;
  top: 100%;
  width: 0;
}
.feature-highlight::after {
  border-top-color: #fff;
  border-width: 10px;
}
.feature-highlight::before {
  border-top-color: #e4e4e4;
  border-width: 12px;
  margin-left: -2px;
}
.feature-highlight__close-button {
  margin-top: 12px;
}

.feed-controls {
  height: 35px;
  background-color: #fff;
  bottom: inherit;
  display: flex;
  flex-direction: column;
  position: absolute !important;
  top: 88px;
  transition: top 0.3s ease;
  width: 100%;
  z-index: 998;
}
.feed-controls::after {
  background: linear-gradient(rgba(153, 153, 153, 0.1), transparent) no-repeat;
  bottom: -5px;
  height: 5px;
  left: 0;
  right: 0;
  z-index: 2;
}
.feed-controls--search-menu-open {
  height: 75px;
}
.feed-controls--search-menu-open::after {
  border-top: 1px solid #e4e4e4;
}
.feed-controls--interval-menu-open {
  top: 204px;
}
.feed-controls--custom-interval-menu-open {
  top: 359px;
}
.feed-controls__container {
  height: 35px;
  position: absolute;
  align-items: center;
  border-bottom: 1px solid #e6eaec;
  color: #9eb2c0;
  display: flex;
  width: 100%;
}
.feed-controls__right-side-controls-wrapper {
  display: flex;
  justify-content: flex-end;
  width: 100%;
}
.feed-controls__sorting-button-wrapper {
  align-items: center;
  border-left: 1px solid #e6eaec;
  display: flex;
  height: 35px;
  padding: 0 10px;
  transition: color 0.2s ease-in;
}
.feed-controls__sorting-button-wrapper.group-dropdown .dropdown-menu {
  right: -1px;
  width: 185px;
}
.feed-controls__sorting-button-wrapper:hover .feed-controls__sorting-button-icon,
.feed-controls__sorting-button-wrapper:hover .feed-controls__current-sorting-icon,
.feed-controls__sorting-button-wrapper:hover .feed-controls__current-sorting-text {
  color: #073572;
}
.feed-controls__sorting-button {
  align-items: center;
  display: flex;
  padding: 4px 0;
  transition: color 0.2s ease-in;
}
@media (min-width: 1487px) {
  .feed-controls__sorting-button::before, .feed-controls__sorting-button::after {
    display: none;
  }
}
.feed-controls__sorting-dropdown {
  border-left: 1px solid #e6eaec;
  border-right: 1px solid #e6eaec;
  cursor: default;
  display: flex;
  flex: 1;
  flex-direction: column;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.feed-controls__sorting-button-icon {
  transition: color 0.2s ease-in;
}
.feed-controls__current-sorting-prefix {
  display: none;
}
@media (min-width: 1487px) {
  .feed-controls__current-sorting-prefix {
    display: inline-block;
  }
}
.feed-controls__current-sorting-icon {
  display: none;
  transition: color 0.2s ease-in;
}
@media (max-width: 1342px) {
  .feed-controls__current-sorting-icon {
    display: block;
  }
}
.feed-controls__current-sorting-text {
  color: #404b55;
  font-size: 14px;
  transition: color 0.2s ease-in;
}
@media (max-width: 1342px) {
  .feed-controls__current-sorting-text {
    display: none;
  }
}
.feed-controls__search--active {
  border-bottom: 1px solid #fff;
  border-left: 1px solid #e6eaec;
  border-right: 1px solid #e6eaec;
  border-top: 1px solid #e6eaec;
  color: #073572;
}
.feed-controls__search--hide-right-border {
  border-right: 1px solid transparent;
}
.feed-controls__icon-tooltip {
  align-items: center;
  display: flex;
  height: 100%;
  justify-content: center;
  padding: 3px 0;
  width: 100%;
}
.feed-controls__control-icon {
  align-items: center;
  display: flex;
  justify-content: center;
  width: 35px;
  height: 35px;
  transition: color 0.2s ease-in;
}
.feed-controls__control-icon:hover {
  color: #073572;
}
.feed-controls__control-icon--active {
  color: #073572;
}
.feed-controls__control-icon--disabled {
  color: #e4e4e4;
  pointer-events: none;
}
.feed-controls__control-icon--blocked {
  pointer-events: none;
}

.feed-editor-actions {
  border-top: 2px solid #e6eaec;
  padding: 22px 0;
}

.feed-subscribers-selector {
  margin-bottom: 30px;
}
.feed-subscribers-selector .ember-power-select-trigger {
  margin-right: 0;
}
.feed-subscribers-selector__assign-yourself {
  margin-top: 10px;
  text-align: right;
  width: 100%;
}
.feed-subscribers-selector__dropdown--invalid .ember-power-select-search-input {
  border-color: #ef5555;
}
.feed-subscribers-selector__dropdown--invalid .ember-power-select-option--no-matches-message {
  color: #ef5555;
}

.feed-notifications-table {
  margin-bottom: 30px;
  margin-top: 10px;
}
.feed-notifications-table__user {
  align-items: flex-start;
  display: flex;
  flex: 1;
  flex-direction: column;
  justify-content: center;
  line-height: 1.4;
  min-width: 0;
}
.feed-notifications-table__name {
  max-width: 100%;
}
.feed-notifications-table__email {
  max-width: 100%;
}
.feed-notifications-table__checkbox {
  text-align: center;
  width: 70px;
}
.feed-notifications-table__actions {
  text-align: right;
  width: 100px;
}
.feed-notifications-table__icon {
  color: inherit;
  cursor: pointer;
  transition: color 0.15s ease-in;
}
.feed-notifications-table__icon:hover {
  color: #073572;
}
.feed-notifications-table__icon--remove:hover {
  color: #da595b;
}
.feed-notifications-table__icon--add-user {
  transform: translateY(-1px);
}

.feed-summary {
  max-width: 100%;
}
.feed-summary__item {
  align-items: center;
  border-color: #e6eaec;
  border-radius: 3px;
  border-style: solid;
  border-width: 1px;
  display: flex;
  justify-content: space-between;
  overflow: hidden;
  padding: 15px;
  transition: background-color 0.2s ease 0s, box-shadow 0.2s ease 0s, border-color 0.2s ease 0s;
}
.feed-summary__item:hover {
  background-color: #fdfdfd;
  border-color: #073572;
  cursor: pointer;
}
.feed-summary__item--disabled {
  color: #999;
}
.feed-summary__item--disabled:hover {
  background-color: transparent;
  border-color: #e6eaec;
  cursor: default;
}
.feed-summary__item-content {
  font-size: 20px;
  font-weight: bold;
  line-height: 20px;
}
.feed-summary__item-title {
  color: #62718a;
  font-size: 11px;
  font-weight: bold;
  line-height: 11px;
  padding-bottom: 7px;
  text-transform: uppercase;
}
.feed-summary__item-icon {
  color: #c1d7e4;
  font-size: 2.3rem;
  line-height: 20px;
}
.feed-summary__item-empty-message {
  color: #999;
  font-size: initial;
  font-weight: 400;
  margin-top: 12px;
}
.feed-summary__item-footer {
  font-size: 14px;
  margin: 5px 0 3px 20px;
}

.feed-summary-bar-chart-single-bar__loading-wrapper {
  animation: contentPlaceholderBackgroundShimmer 1s infinite linear;
  background: linear-gradient(to right, #eceff0 8%, #dae0e3 18%, #eceff0 33%);
  background-size: 180% 100%;
  max-width: 400px;
  position: relative;
}

.feed-summary-scorecard__loading-block {
  animation: contentPlaceholderBackgroundShimmer 3s infinite linear;
  background: linear-gradient(to right, #eceff0 8%, #dae0e3 18%, #eceff0 33%);
  background-size: 180% 100%;
  max-width: 400px;
  position: relative;
  margin-top: 0.25rem;
  height: 1.5rem;
  width: 5rem;
  border-radius: 1rem;
}

.filter-value-dropdown .ember-power-select-option {
  border-bottom: solid 1px #e6eaec;
  border-top: solid 1px #e6eaec;
  font-size: 14px;
  margin-top: -1px;
  padding-bottom: 8px;
  padding-top: 8px;
}
.filter-value-dropdown .ember-power-select-option[aria-current=true] {
  border-color: #073572;
}
.filter-value-dropdown .ember-power-select-option:last-child {
  border-bottom: none;
}
.filter-value-dropdown .ember-power-select-search input {
  height: 32px;
}

.filter-picker {
  font-size: 14px;
}
@media (max-width: 1250px) {
  .filter-picker {
    flex-wrap: wrap;
  }
}
.filter-picker__new-filter-requires-additional-setup {
  font-size: 16px;
}
.filter-picker.ember-power-select-trigger {
  margin-right: 0;
}
.filter-picker__filters {
  max-width: 280px;
  min-width: 200px;
}
@media (max-width: 1250px) {
  .filter-picker__filters:not(.filter-picker-filters--empty-category) {
    flex: auto;
    max-width: none;
    width: 100%;
  }
}
.filter-picker__filters--empty-category {
  flex-basis: 320px;
}
.filter-picker__operator {
  flex-shrink: 0;
  min-width: 100px;
}

.feed-status-notification {
  font-size: 14px;
  margin-top: 18px;
  text-align: right;
}

.filter-input-number-input {
  width: 100px;
}

.filter-picker-error {
  color: #ef5555;
  display: block;
  font-size: 80%;
  font-weight: bold;
  text-align: right;
}
.filter-picker-error--absolute {
  bottom: -1.3em;
  position: absolute;
  right: 7px;
}

.filter-input--deleted-option-selected .ember-power-select-trigger {
  color: #b7b7b7;
}

.integration-notifications-info {
  margin-bottom: 30px;
}
.integration-notifications-table {
  font-size: 14px;
}
.integration-notifications-table .channel-column {
  width: 35%;
}
.integration-notifications-table .user-column {
  width: 35%;
}
.integration-notifications-table th.actions-column {
  text-align: center;
}
.integration-notifications-table td.actions-column {
  text-align: center;
  width: 10%;
}
.integration-notifications-table td.actions-column .notification-remove-button {
  cursor: pointer;
  font-size: 12px;
  transition: color 0.15s ease-in;
}
.integration-notifications-table td.actions-column .notification-remove-button:hover {
  color: #da595b;
}
.integration-notifications .new-integration-notification {
  margin-bottom: 30px;
  margin-top: 40px;
}
.integration-notifications .new-integration-notification__header {
  margin-bottom: 20px;
}
.integration-notifications .new-integration-notification__submit {
  margin-top: 5px;
}
.integration-notifications .new-integration-notification__form .field {
  margin-top: 15px;
}
.integration-notifications .new-integration-notification__form .field .ember-power-select-trigger {
  width: 300px;
}

.interval-custom-select {
  border-bottom: 1px solid #e6eaec;
  border-top: 1px solid #e6eaec;
  display: flex;
  flex-direction: column;
  justify-content: center;
  line-height: 1;
  padding: 10px 10px 0;
  position: relative;
}
.interval-custom-select .ember-power-calendar-nav-control[disabled] {
  opacity: 0.4;
}
.interval-custom-select .ember-power-calendar-nav-control--previous {
  margin-left: -8px;
}
.interval-custom-select .ember-power-calendar-nav-control--next {
  margin-right: -8px;
}
.interval-custom-select__right-section {
  align-items: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: center;
}
.interval-custom-select__display {
  line-height: 1.5em;
}
.interval-custom-select__select-date-placeholder {
  border-bottom: 1px dashed #767676;
  color: #767676;
  display: inline-block;
  font-size: 13px;
  line-height: 1.6em;
  margin-left: 3px;
}
.interval-custom-select__close {
  cursor: pointer;
  opacity: 0.7;
  position: absolute;
  right: 15px;
  top: 15px;
  transition: opacity 0.2s ease;
}
.interval-custom-select__close:hover {
  opacity: 1;
}
.interval-custom-select__picker {
  flex: 1;
  height: 258px;
  margin-right: 20px;
  position: relative;
}
.interval-custom-select__picker .ember-power-calendar {
  z-index: 20;
}
.interval-custom-select__picker .ember-power-calendar-days {
  background-color: #fff;
}
.interval-custom-select__picker::after {
  bottom: 1px;
  height: 30px;
  opacity: 0.8;
  width: 100%;
  z-index: 10;
}
.interval-custom-select__apply {
  min-width: 45%;
}

.interval-menu {
  cursor: auto;
  width: 100%;
}

.interval-options-title {
  font-size: 12px;
  font-weight: bold;
  margin-bottom: 14px;
}
.interval-options-title:not(:first-child) {
  margin-top: 18px;
}

.interval-quick-selects {
  border-bottom: 1px solid #e6eaec;
  border-top: 1px solid #e6eaec;
  display: flex;
  flex-wrap: wrap;
  padding: 10px 10px;
  position: relative;
}
.interval-quick-selects .quick-select-wrapper {
  animation: simple-appear 0.3s ease;
  display: flex;
  flex: 0 0 33%;
}
.interval-quick-selects .quick-select-wrapper:nth-child(1) {
  animation-duration: 0.1s;
}
.interval-quick-selects .quick-select-wrapper:nth-child(2) {
  animation-duration: 0.1s;
}
.interval-quick-selects .quick-select-wrapper:nth-child(3) {
  animation-duration: 0.2s;
}
.interval-quick-selects .quick-select-wrapper:nth-child(4) {
  animation-duration: 0.3s;
}
.interval-quick-selects .quick-select-wrapper:nth-child(5) {
  animation-duration: 0.4s;
}
.interval-quick-selects .quick-select-wrapper:nth-child(6) {
  animation-duration: 0.5s;
}
.interval-quick-selects .quick-select-wrapper:nth-child(7) {
  animation-duration: 0.6s;
}
.interval-quick-selects .quick-select-wrapper:nth-child(8) {
  animation-duration: 0.7s;
}
.interval-quick-selects .quick-select-wrapper:nth-child(9) {
  animation-duration: 0.8s;
}
.interval-quick-selects .quick-select-wrapper .quick-select-interval-disabled {
  text-align: center;
  width: 100%;
}
.interval-quick-selects .quick-select-wrapper .quick-select-interval-button {
  border-width: 0;
  flex: 1;
  margin: 2px auto;
}
.interval-quick-selects .quick-select-wrapper .quick-select-interval-button.disabled:hover {
  background: none;
}

.invite-new-user__hint-text {
  margin-top: 4px;
}
.invite-new-user__input--error {
  border-color: #f16c6c;
  color: #ef5555;
}
.invite-new-user__input--error::-webkit-input-placeholder {
  color: #f8b2b2;
}
.invite-new-user__input--error:-moz-placeholder {
  color: #f8b2b2;
}
.invite-new-user__input--error::-moz-placeholder {
  color: #f8b2b2;
}
.invite-new-user__input--error:-ms-input-placeholder {
  color: #f8b2b2;
}
.invite-new-user__cancel {
  margin-left: 1px;
  margin-top: 10px;
}

.lead-comment {
  border: 1px solid #e6eaec;
  padding: 20px;
}

.lc-show-more {
  font-size: 12px;
  margin-bottom: 20px;
  text-align: center;
}

.lc-loading {
  color: #b7b7b7;
  margin: -12px 0 30px;
  text-align: center;
}

.lc-loading-error {
  margin-bottom: 20px;
  text-align: center;
}

.lc-header {
  align-items: center;
  display: flex;
  margin-bottom: 10px;
}

.lc-content {
  word-wrap: break-word;
}

.lc-meta {
  flex: 1;
  margin-left: 10px;
}

.lc-user {
  font-size: 14px;
  font-weight: 700;
}
.lc-user--empty {
  color: #b7b7b7;
}

.lc-timestamp {
  color: #b7b7b7;
  font-size: 12px;
}

.lc-actions {
  font-size: 12px;
  margin-left: 10px;
  min-width: 200px;
  position: relative;
  text-align: right;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.lc-actions > span {
  color: #b7b7b7;
  font-weight: 600;
}
.lc-actions > a {
  margin-left: 5px;
}

.lc-list {
  margin-bottom: 20px;
}
.lc-list > .lead-comment {
  margin-bottom: 10px;
}

.lc-empty-user-circle {
  width: 35px;
  height: 35px;
  background-color: #b7b7b7;
  border-radius: 50%;
  color: #fff;
  font-size: 16px;
  line-height: 35px;
  margin: 0;
}

.lead-editor label {
  display: inline-block;
  font-weight: bold;
  width: 100px;
}
.lead-editor .input-row {
  margin-bottom: 10px;
}
.lead-editor .input-row .secondary-text {
  font-size: 14px;
  margin-top: 10px;
}
.lead-editor input {
  min-width: 300px;
  width: 60%;
}

.lead-prospects__linkedin-link {
  display: inline-block;
  font-size: 15px;
  margin-top: 20px;
}

.lead-prospects-list {
  max-width: 100%;
  position: relative;
}
.lead-prospects-list--fixed-height {
  min-height: 340px;
}
.lead-prospects-list__reload-list {
  background-color: #f9f9f9;
  border-radius: 5px;
  font-size: 15px;
  margin-bottom: 10px;
  padding: 12px 0;
  text-align: center;
}
.lead-prospects-list__reload-list-icon {
  margin-bottom: 1px;
  margin-left: 4px;
  margin-right: 2px;
}
.lead-prospects-list .task-retry-section {
  text-align: center;
}
.lead-prospects-list > .load-indicator {
  margin-top: 20px;
}
.lead-prospects-list__help-text {
  font-size: 15px;
  max-width: 600px;
}

.lead-prospects-controls__label {
  color: #8c9eab;
  display: block;
  font-size: 12px;
  font-weight: bold;
  line-height: 1.4em;
  margin-bottom: 4px;
  text-transform: uppercase;
}
.lead-prospects-controls__trigger {
  font-size: 14px;
  padding-bottom: 1px;
  padding-top: 1px;
}
.lead-prospects-controls__trigger--without-status-icon .ember-power-select-status-icon {
  display: none;
}
.lead-prospects-controls__trigger--without-clear-icon .ember-power-select-trigger-multiple-input::-webkit-search-cancel-button {
  display: none;
}
.lead-prospects-controls__trigger--with-search-icon {
  padding-left: 28px;
}
.lead-prospects-controls__trigger--with-search-icon::before {
  /* No need for generic font-family as it's icon font */
  /* stylelint-disable-next-line font-family-no-missing-generic-family-keyword */
  font-family: "Leadfeeder";
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  line-height: 1;
  speak: none;
  text-transform: none;
  align-items: center;
  bottom: 0;
  color: #b7b7b7;
  content: "\e90c";
  display: flex;
  font-size: 0.8em;
  justify-content: center;
  left: 2px;
  pointer-events: none;
  position: absolute;
  top: 2px;
  width: 34px;
}
.lead-prospects-controls__trigger--last {
  margin-right: 0;
}
.lead-prospects-controls__trigger--loading .ember-power-select-trigger-multiple-input {
  background-color: #f7f7f7;
}
.lead-prospects-controls__dropdown .ember-power-select-option {
  font-size: 14px;
}
.lead-prospects-controls__dropdown--without-options .ember-power-select-option {
  cursor: default;
}

.lead-prospects-search {
  background-color: #f9f9f9;
  border-bottom-color: #e6eaec;
  border-bottom-style: solid;
  border-bottom-width: 2px;
  padding: 8px 13px;
}

.lead-prospects-card {
  border: 1px solid transparent;
  margin: -1px 1px;
}
.lead-prospects-card:nth-child(even) {
  background-color: #f9f9f9;
}
.lead-prospects-card__wrapper {
  align-items: center;
  border-radius: 5px;
  display: flex;
  flex-direction: row;
  font-size: 14px;
  height: 68px;
  padding: 10px 6px 10px 12px;
  position: relative;
}
.lead-prospects-card .avatar-item {
  cursor: default;
  flex-shrink: 0;
  height: 48px;
  line-height: 48px;
  margin-right: 14px;
  width: 48px;
}
.lead-prospects-card__personal-data {
  flex: 100 0 0;
  min-width: 0;
}
.lead-prospects-card__person-name {
  display: inline-block;
  font-size: 15px;
  line-height: 18px;
  max-width: calc(100% - 60px);
}
.lead-prospects-card__title-with-location {
  color: #767676;
  font-size: 13px;
  overflow: hidden;
}
.lead-prospects-card__right-side-icons {
  font-size: 16.5px;
  margin-left: 10px;
  margin-right: 8px;
}
.lead-prospects-card__left-side-icons {
  white-space: nowrap;
}
.lead-prospects-card__add-contact-container {
  border-left: 1px solid #c1d7e4;
  margin-left: 5px;
  padding-left: 10px;
}
.lead-prospects-card__add-contact-link {
  display: flex;
  padding: 3px;
}
.lead-prospects-card__add-contact-link--sf {
  background-color: #f88962;
  border-radius: 50%;
  transition: background-color 0.2s ease;
}
.lead-prospects-card__add-contact-link--sf:hover {
  background-color: #f55219;
}
.lead-prospects-card__add-contact-icon {
  width: 14px;
  height: 14px;
}
.lead-prospects-card__add-contact-icon--sf {
  width: 11px;
  height: 11px;
}
.lead-prospects-card__icon {
  display: inline-block;
  margin-left: 3px;
  position: relative;
  transition: opacity 0.2s ease;
}
.lead-prospects-card__icon--mailchimp, .lead-prospects-card__icon--crm {
  background-position: center;
  background-repeat: no-repeat;
  display: inline-block;
  height: 22px;
  margin-left: 7px;
  width: 16px;
}
.lead-prospects-card__icon--mailchimp {
  background-image: url("/assets/images/emss/mailchimp_freddie-59c33edaf2885d9591ab8ad9ed83f19e.svg");
  background-size: contain;
}
.lead-prospects-card__icon--crm--zoho {
  background-image: url("/assets/images/crms/zoho-icon-386a15bf198820244dc4b88e774ea859.svg");
  background-size: 15px auto;
}
.lead-prospects-card__icon--crm--salesforce {
  background-image: url("/assets/images/crms/salesforce-icon-2bef3244cefd15887c279fca1836a100.svg");
  background-size: 18px auto;
}
.lead-prospects-card__icon--crm--pipedrive {
  background-image: url("/assets/images/crms/pipedrive-icon-154668304e6abf9f1b677018f09e188e.svg");
  background-size: 11px auto;
}
.lead-prospects-card__icon--crm--webcrm {
  background-image: url("/assets/images/crms/webcrm-icon-e5878f3645ec58f0a4164d0b28efcbea.svg");
  background-size: 16px auto;
}
.lead-prospects-card__icon--crm--hubspot {
  background-image: url("/assets/images/crms/hubspot-icon-366a76b89beae74e65b3e2da29f97cc1.svg");
  background-size: 16px auto;
}
.lead-prospects-card--placeholder {
  background-color: #fafafa;
  padding: 0;
}
.lead-prospects-card--placeholder:nth-child(odd) {
  background-color: #fff;
}
.lead-prospects-card--placeholder:nth-child(odd) .prospect-placeholder__wrapper {
  box-shadow: inset 0 0 0 12px #fff;
}
.lead-prospects-card--placeholder:nth-child(odd) .prospect-placeholder__mask {
  background-color: #fff;
}
.lead-prospects-card--placeholder:nth-child(odd) .prospect-placeholder__mask--horizontal--middle--upper::after {
  background-color: #fff;
}
.lead-prospects-card--placeholder .prospect-placeholder__wrapper {
  border-radius: 5px;
  box-shadow: inset 0 0 0 12px #fafafa;
  height: 68px;
  width: 400px;
}
.lead-prospects-card--placeholder .prospect-placeholder__mask {
  background-color: #fafafa;
  position: absolute;
}
.lead-prospects-card--placeholder .prospect-placeholder__mask--vertical {
  height: 100%;
  left: 60px;
  top: 0;
  width: 16px;
}
.lead-prospects-card--placeholder .prospect-placeholder__mask--horizontal {
  left: 76px;
  width: 100%;
}
.lead-prospects-card--placeholder .prospect-placeholder__mask--horizontal--upper {
  height: 21px;
  top: 0;
}
.lead-prospects-card--placeholder .prospect-placeholder__mask--horizontal--middle {
  height: 11px;
  top: 29px;
}
.lead-prospects-card--placeholder .prospect-placeholder__mask--horizontal--middle::after {
  background-color: #fafafa;
  height: 9px;
  right: 0;
  top: -9px;
  width: 180px;
  z-index: 10;
}
.lead-prospects-card--placeholder .prospect-placeholder__mask--horizontal--lower {
  height: 8px;
  top: 48px;
}

.lead-tags-display a:first-child,
.lead-tags-display button:first-child {
  margin-left: 0;
}

.lead-tag {
  display: inline-block;
}
.lead-tag:not(.active) .lead-tag-label {
  padding-left: 17px;
  padding-right: 17px;
}

.lead-tag-label .lead-tag-label__remove-icon {
  color: #fff;
  margin-left: 3px;
}
.lead-tag-label:hover .lead-tag-label__remove-icon {
  color: currentColor;
}

.lead-tags-display-list {
  margin: 4px -2px 10px;
}
.lead-tags-display-list li {
  float: left;
  margin: 2px;
}

.not-logged-in-logo {
  align-self: center;
  background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1NTAgMTc2Ij48dGl0bGU+bGVhZGZlZWRlci1sb2dvPC90aXRsZT48cGF0aCBkPSJNNTQ5LjM3NCw3MS4xMTQ1Yy00LjA5MzUtOC45OTg5LTE0LjExLS45Nzc2LTE3LjkzMzksMy40MDI3LTMuODYxNyw0LjQyNDQtNy40NjUzLDkuMDkxNi0xMC45MjU0LDEzLjgzNi0wLjE0MzQtMy42ODc0Ljg4LTcuNjIsMS40Mjc3LTExLjI0NzYsMC42NDY2LTQuMjk2NSwxLjA3OS03LjEzMi00LjMzODQtNy4xMzItNi43NzI0LDAtNy43NTY2LDYuMDU3NC05LjA1LDExLjYyNDktMS42ODE1LDcuMjMzNi0yLjk5LDE0LjU1NTQtMy45NSwyMS45MTkyLTguNjI4Miw3Ljg5MTItMzEuNDY1NCwyNC45ODY1LTQwLjEzNTUsOS40MjcsMTAuMDczNi0yLjc3NiwxOS45OTcyLTguODgyLDI1LjI1MTMtMTguMTU2Nyw1LjQyNDEtOS41ODE1LDIuNzE0My0yMi4wNTM4LTguMTczNi0yNi4xMzg0LTI0LjAxMzQtOC45OTY3LTM3LjkxNTYsMjMuMTI2Mi0zNS4xMzczLDQxLjk3ODEtMy4yMjg0LDIuMzY3OC0xMi43ODc5LDkuODY0LTE2LjMyMDgsNC41My0zLjUxMDktNS4zMDA1LTEuNTk1NS0xNC43NjI4LjM5MjctMjAuMzM0OCw2LjM3NzQtMTUuNDgsMTQuMi0zMC4zMDI1LDE5LjA3OTItNDYuMzc2MSwzLjY2MzEtMTIuMDc1MSw5LjQyMjYtMzMuMDU4Ni4zNDg2LTQ0LjA4MzNDNDM4LjExNjUtOS45NjIsNDIyLjI1LDE1LjI0NzQsNDE4LjMsMjQuMjM3NWMtNi40MywxNC42NDE1LTkuNTIsMzAuOTcxMS05Ljg5Nyw0Ni45MTIzLTE5LjUyNSwxLjc5NjMtMzUuMzYsMjAuNDgtMzUuNDA0MywzOS44NC04LjY5MjIsNS42NTE0LTIzLjQzNTIsMTQuMTMtMzAuMjIwOCwxLjk1NTEsMTAuMDczNi0yLjc3NiwxOS45OTkzLTguODgyLDI1LjI1MTMtMTguMTU2Nyw1LjQyNjMtOS41ODE1LDIuNzE2NS0yMi4wNTM4LTguMTcxNC0yNi4xMzg0LTI0LjAwNDUtOC45OTIzLTM3Ljc0NTYsMjIuOTM4Ny0zNS4xMzI5LDQxLjc5MDUtNi4xNjMzLDQuMTIyMS0xMy4wNDE2LDguMTYyNi0yMC42MTcyLDguNzU0LTcuNjk5Mi42MDI0LTkuMDY1MS01LjIxNDQtMTIuMjQwNi0xMC45MTQzLDguNTg0LDAuMzAyMywxNy4wNTM0LTEuNTM4MSwyMy4yMDU3LTguMDA4MSw2LjczNDktNy4wODEzLDkuNjI3OS0xOSwyLjYzOTItMjYuOTI4NC02LjQzOTItNy4zMDY0LTE3Ljk3MTMtNy40NTY0LTI1LjkwODktMi42OS04LjY0MTQsNS4xOS0xMy41MDk0LDE1LjEyNDctMTUuNTA0MywyNC42ODg2LTkuMTQyMy0uNTIzLTEzLjQ1ODctMy4yNTkzLTEzLjU5MzMtMy4yMjYyYTIwMi45NTM1LDIwMi45NTM1LDAsMCwwLDI2LjU2LTQ0Ljg1NzljNC43MDY5LTEwLjk2NzMsMTQuNjMtMzUuNzQ4Ni0yLjcxNjQtNDEuMjk2Mi0xNS45NzQzLTUuMTI2Mi0yNi41NCwxMy4xNy0zMS41OCwyNS4yOTMyQzI0OC4yMSw0Ny41MTE2LDI0NC43MDU2LDY0Ljk2LDI0MS45Mzg0LDgyLjI3NmMtMi43NjUtMS4xNjc0LTEyLjY2LTguMDA4MS0xMS4yMDM0LjUxNDIsMC44NjUsNS4wNjIyLDUuMjk2MSwxMC42MjMxLDkuMjQxNiwxMy43NDExLTAuMTEyNSwxLjkzMDktLjQxNzEsNC4xOC0wLjcxMDUsNi4yNTE2LTYuMDg4Myw1LjA1NzctMTMuNTE2MSwxMi42MDI1LTIxLjU1MjksMTQuMDU4OS05LjYwMzYsMS43Mzg5LTUuODMyMy0xNy4zMjI2LTQuMTU3NC0yMi4wMTg1LDYuMzgtMTUuNDgsMTQuMi0zMC4zMDI1LDE5LjA3OTEtNDYuMzc2MSwzLjY2NTQtMTIuMDc1MSw5LjQyMjYtMzMuMDU4Ni4zNDg2LTQ0LjA4MzNDMjIxLjE5MS05Ljk2MiwyMDUuMzI0OCwxNS4yNDc0LDIwMS4zNzcsMjQuMjM3NWMtNi40MzI1LDE0LjY0MTUtOS41MiwzMC45NzExLTkuODk5Myw0Ni45MTIzLTIwLjI1MDksMS44NjQ3LTM2LjQzNzEsMjEuODEzMy0zNS4yODUxLDQxLjg3NjYtMi4wODUzLDEuOTMwOS04Ljc1NjIsNy45NzUtMTEuNjI3MSw0LjU4NTUtMy4zNTQyLTMuOTU2Ni0uNTAzMS0xNC4wMzkuMjg5MS0xOC40ODM0LDEuNzQ3Ny05Ljc3NTcsNy44NDkzLTI0LjY5NzQtNC4yNDU3LTI5LjcxMzItMjMuODk4Ni05LjkxLTQ0LjExMiwxNy43ODYtNDcuNjI3MywzOC4zNzktOC43NTYyLDYuNjg0MS0yNy4zNjc1LDE4Ljg3MzktMzUuMDEzNyw1LjE1LDkuNTktMi42NDE0LDE4Ljk0NjctOC4yNjQxLDI0LjQwODMtMTYuNzYyMSw1LjgxNjktOS4wNTE5LDQuNzkwOC0yMS43OC01LjcxNTQtMjYuODQ0NkM1My4wOTc3LDU3Ljk4NjgsMzguMTUzOSw4OS42MiwzOS43NDA1LDEwOC4zMTI5YTY1LjM4NzIsNjUuMzg3MiwwLDAsMS0xMi42MDkxLDcuNTIyNmMtMi4zMy45NjIxLTUuMDY0NCwyLjItNi41NjI3LS41M2ExNi41MzM5LDE2LjUzMzksMCwwLDEtMS44OTEyLTcuNzc2NHYtMC45NzMyYzEuNzctMTEuNjg2Nyw5LjIzMDYtMjEuODc1LDE0LjczNDItMzIuMDc0NCw2LjQzNDctMTEuOTIyOCwxMi44NzE3LTI0LjA1NTMsMTYuODU0OC0zNy4wNTUsMi43NTQtOC45ODEzLDguMTc1OC0yOC42Mzg2LTEuNTI3LTM1LjM4ODlDMzcuOTA0NS01LjUwMjIsMjUuMTY1MiwxMi4xNjQ3LDIwLjY2OCwxOS42NjUyLDcuODQyNiw0MS4wNDYsMCw2OC42MTIxLDAsOTMuNTc0M2MwLDExLjg3ODcsMS43MjU3LDI2LjUwNDcsOS42NzQyLDM1Ljk0NSw4Ljk2ODEsMTAuNjUxNywyNi4wMjE0LS44OCwzNC44NjE1LTYuNTAzMiwxMS43Njg0LDE3LjkyMDYsMzUuMTQ2MiwxMC40LDQ5LjY5NDkuNTQ5NSw3LjUzMzcsMTYuNjYwNiwyNy42NDc4LDEwLjM1NjEsMzcuMTktLjc2MTMsMS45OTkzLDUuMDYsNS4yNDA5LDEwLjU5MjIsMTEuMTQxNiwxMS40MDY1LDYuNzAxOCwwLjkyNDYsMTIuOTc3Ni0zLjI3MjUsMTcuODAxNS03LjQzLDkuNzA1MSwxNC41NTU0LDI4LjA1MzgsMy45MDE0LDM3LjM2MTctNS4xNTcxLDIuNzY5NCw2LjY4MTksOS40MTM4LDEzLjM2MzgsMTcuMjk2MSwxMi4xMzkxLDguMTI5NS0xLjI2LDE1LjkyMzYtNy4wMzUsMjIuMzUxNy0xMS44MDM2LTEuMDA4NSwxMi40MzI1LTEuNjQxOCwyNS4yOCwxLjY3NzEsMzcuNDUsMS43Njc2LDYuNDc2Nyw1LjE0MTYsMTQuMjA0NSwxMi4zMDQ1LDE2LjA2OTIsNy4zMDY0LDEuOTAyMiwxMy43NzItMi4yMTExLDE3Ljc5NzEtOC4wMjgsNi45MzU3LTEwLjAyMjgsNy40NDMyLTIyLjg2NTgsMy4xMzM1LTM0LjA0MjgtMy4xNTU2LTguMTgtOS43MTM5LTE4LjExOTItMTguOTg4Ni0xOS45ODE3YTcwLjg3NzQsNzAuODc3NCwwLDAsMSwxLjE0NzUtOC41NzA4YzAuNDUyNC0yLjA3NDMsMS4wMzk0LTEuNDg1MSwyLjc3Ni0xLjA4MzVhMTI4LjMzOTUsMTI4LjMzOTUsMCwwLDAsMTguMTI1OSwzLjIwNDFjMC41NiwxMS4yMjExLDYuMTU0NSwyMi4yNDE0LDE3LjQ3NDgsMjUuODAwOCwxMi44NDA4LDQuMDM4MywyNi40NDUxLTIuMDI1OCwzNi45NTc5LTkuMTA5MywxMS4yNjc0LDE2LjA4MjQsMzIuNjE1MSwxMC40MTM0LDQ2LjY1MTksMS41NjY4LDkuMTQ5LDE2LjMxNjQsMjguMjU5LDYuMDgzOSwzOC4yMi0zLjYxLDIuNTY0Miw2LjE4NTQsOC4yNjg1LDEyLjI4NjksMTUuNDgsMTIuMjg2OSw3LjU1MTMsMCwxNS42MDU4LTUuODU0NCwyMS41MDY1LTkuOTksMTIuOTIsMTcuOTkzNCwzNy40MDM2LDguMzU5LDUxLjc2NzEtMi4yODg0LDAuMTk4Niw0LjI2MTEuNzEwNSwxMC4wMSw1LjM4ODcsMTEuODA4MSw0LjcyLDEuODE2MSw4LjM2NzgtLjk5NzQsOS43MDI5LTUuNTE5LDIuNTQ2NS04LjYxNzIuNzc5LTE3Ljk2NDgsNS41ODA3LTI1Ljk2ODVhNTcuMTg4MSw1Ny4xODgxLDAsMCwxLDE3LjI3ODUtMTguMDA0NWMyLjEzMzktMS4zOSw2LjMyODgtMi4wNzY1LDcuNTE4Mi00LjM4NDcsMS4xNjA3LTIuMjU1MywxLjU4NDUtNi4wOS41MDEtOC40NDk1LTAuMzY4NS0uODA1NS4zNzI5LDAuODEsMCwwTTI5NC4xMjQ3LDg4LjY4YzEuODIwNi00LjczNzgsNS43MzA4LTguMDE5MiwxMC45MzQyLTguMDE5MiwyLjUyNDQsMCw1LjAyNjgsMS42NTA2LDQuNzc1Myw0LjQxMTItMC44ODcxLDkuODA2Ni05Ljk1LDExLjcwODgtMTcuNzkyNywxMS43NDYzYTI4LjE4MTUsMjguMTgxNSwwLDAsMSwyLjA4MzEtOC4xMzgzaDBNMTguNzQ2LDY0LjcyODNBMTI2LjYzNTksMTI2LjYzNTksMCwwLDEsMjYuNjA0LDM0LjY4YTUxLjA3OTIsNTEuMDc5MiwwLDAsMSw2LjcyODMtMTIuNTA1NGMxLjEwNTUtMS40MSwyLjQ2MjctMi45OTg5LDQuMjQzNS0zLjU1NSwyLjUtLjc3NjgsMS43OTE5LDMuMjcyNSwxLjc5MTksNC42OTgxQzM3LjQ2MSw0Mi42MzI2LDI3LjE1MzUsNjEuNzgyNCwxNy43NzUsNzguNDM4NmExMDAuNTkzMywxMDAuNTkzMywwLDAsMSwuOTcxLTEzLjcxYzAuNjQ4OC00LjY5NTktLjY0NjYsNC43LDAsME01Ni41MDkyLDk3LjY3MjFjMC4yODY5LTQuNDgxOCwxLjMzNTEtOS40MzgsNC4yMDE2LTEzLjAxNzMsMi4zNDc5LTIuOTE3Myw4LjkyODMtNi40MDYxLDExLjQ1NzItMS45Nzk0LDUuMDY2Niw4LjkzMDUtNy43MTY5LDE4LjY3NzUtMTUuNzkzNCwxOC42Nzc1cTAtMS41MjkzLjEzNDYtMy42ODA4bTcwLjk1NDMsMy40MDA1Yy0wLjY5MjksNS41OTg0LTIuNzUxNywxMS43NDE5LTYuMjgyNSwxNi4xOTA2LTQuNzE1Nyw1LjkzNi0xMC41MTkzLDIuODc1My0xMS4wMTE1LTQuMDY3LTAuODA3Ni0xMS4zNzc3LDcuODA1MS0zMi41MzU2LDIxLjUyNjQtMzIuNTM1NlptNjEuNzksMTEuMDRjLTIuMjI0MywzLjc0MjYtNS41MDc5LDcuNjU5NS0xMC4yNjU2LDcuMTQwOS01LjY2NjgtLjYxNTctNi42ODYzLTUuODA1OC02LjA1NTItMTAuNjA3NiwxLjQ1NjQtMTEuMDc3Nyw4LjY2NTctMjIuMjE3MSwxOC44MjA5LTI3LjE1MTNhMTg3LjA4NjEsMTg3LjA4NjEsMCwwLDAsMS4wNDE2LDIzLjM5NTUsNDcuMzM4OSw0Ny4zMzg5LDAsMCwxLTMuNTQxNyw3LjIyMjVjLTAuNTQ5NS45MjY4LDEuMjk3NS0yLjEyOTUsMCwwbTE5LjE2My0zMC40MDg0VjgxLjAwOTNhMjQwLjExLDI0MC4xMSwwLDAsMSwxLjkyLTMwLjU3ODMsMTU1LjUwNiwxNTUuNTA2LDAsMCwxLDMuNjIxMi0xOS45OTk0YzEuMDIxNy0zLjg3MDYsMi43MDU0LTExLjk3OCw3LjE4OTQtMTMuNDYzMSw3LjE5MzgtMi4zODU1LDEuMjUxMiwyNS41MDI4LjU0NSwyOC4xOTA2LTMuMjg4LDEyLjUyNTMtOC4wNzg3LDI0LjcwNC0xMy4yNzU1LDM2LjU0NTJNMjYyLjMyMTcsMTUyLjY5Yy0wLjU1ODMsMi4xNzU4LTIuOTM3MSw5LjcxODMtNi42OTA3LDcuMzY4Mi0yLjYyMzgtMS42NDE4LTIuNTA5LTcuNTExNi0yLjc1LTEwLjIyNTlhMTc3LjUwNzgsMTc3LjUwNzgsMCwwLDEtLjMyLTI3LjEyMjZjNi4wNTMsNS42MDUsMTQuMTA1MiwxMy4wNTI2LDkuNzYsMjkuOThtLTEuODQtODMuNjU2MWExMzUuNzI3OSwxMzUuNzI3OSwwLDAsMSw2LjY3MDktMjguNjU4NGMxLjIxODEtMy42MDU4LDcuMDE3My0yNS41OTc3LDE0LjY5NjYtMTguODcxNyw2LjQ5ODgsNS42OTExLTMuMjM1LDIwLjM5ODgtNi4wMjIxLDI1LjczLTUuMjk4MywxMC4xMDg5LTEwLjk2NzMsMjAuMDE0OC0xNi4zMTg1LDMwLjA5NzJxMC40ODY2LTMuODIuOTczMS04LjI5NzJtODAuODQsMjguNjM4NmMwLjI4NDctNC40ODE4LDEuMzMyOS05LjQzOCw0LjE5OTQtMTMuMDE3MywyLjM1LTIuOTE3Myw4LjkyODMtNi40MDYxLDExLjQ1NzItMS45Nzk0LDUuMDY2Niw4LjkzMDUtNy43MTY5LDE4LjY3NzUtMTUuNzkzMywxOC42Nzc1cTAtMS41MjkzLjEzNjgtMy42ODA4bTY0Ljg1NzIsMTQuNDQwN2MtMi4yMjY1LDMuNzQyNi01LjUwNzksNy42NTk1LTEwLjI2NzgsNy4xNDA5LTUuNjY2OC0uNjE1Ny02LjY4NjMtNS44MDU4LTYuMDU1Mi0xMC42MDc2LDEuNDU2NC0xMS4wNzc3LDguNjY3OS0yMi4yMTcxLDE4LjgyMzItMjcuMTUxMywwLjEwMzcsNi41MDU0LjM2ODUsMTYuNDk3MywxLjA0MTUsMjMuMzk1NWE0Ny41NDI4LDQ3LjU0MjgsMCwwLDEtMy41NDE4LDcuMjIyNWMtMC41NTE3LjkyNjgsMS4yOTUzLTIuMTI5NSwwLDBNNDI1LjM0LDgxLjcwNDVWODEuMDA5M2EyNDAuNTE4LDI0MC41MTgsMCwwLDEsMS45Mi0zMC41NzgzLDE1NS44OTU1LDE1NS44OTU1LDAsMCwxLDMuNjIxMi0xOS45OTk0YzEuMDI0LTMuODcwNiwyLjcwNzctMTEuOTc4LDcuMTkxNi0xMy40NjMxLDcuMTkzOS0yLjM4NTUsMS4yNDksMjUuNTAyOC41NDUxLDI4LjE5MDYtMy4yODgsMTIuNTI1My04LjA3ODgsMjQuNzA0LTEzLjI3NzcsMzYuNTQ1Mk00NjMuMDEsOTcuNjcyMWMwLjI4NjgtNC40ODE4LDEuMzMyOC05LjQzOCw0LjIwMTUtMTMuMDE3MywyLjM0NzktMi45MTczLDguOTI2MS02LjQwNjEsMTEuNDU3Mi0xLjk3OTQsNS4wNjY2LDguOTMwNS03LjcxNjgsMTguNjc3NS0xNS43OTMzLDE4LjY3NzUsMC0xLjAyLjA0MTktMi4yNDY0LDAuMTM0Ni0zLjY4MDgiIHN0eWxlPSJmaWxsOiNmZmYiLz48L3N2Zz4=");
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: contain;
  height: 34px;
  width: 100px;
}

.login-redirect {
  background: #fff;
  box-shadow: 0 0 20px rgba(10, 10, 10, 0.25);
  display: flex;
  flex-direction: column;
  height: 200px;
  margin: 0 auto;
  margin-bottom: 30vh;
  width: 300px;
}

.login-redirect-top {
  align-items: center;
  background: #404b55;
  display: flex;
  height: 60px;
  justify-content: center;
  width: 300px;
}

.login-redirect-body {
  align-items: center;
  display: flex;
  flex: 1;
  justify-content: center;
}

.not-logged-in-wrapper {
  align-items: center;
  bottom: 0;
  display: flex;
  justify-content: center;
  left: 0;
  position: fixed;
  right: 0;
  top: 0;
}

#new-feed-teaser-wormhole {
  position: absolute;
  z-index: 1100;
}

.new-feed-teaser {
  left: inherit;
  overflow: inherit;
  text-overflow: inherit;
  top: inherit;
}

.new-feed-teaser-content {
  animation: bubble-appear 0.5s ease;
  background: #fafafa;
  border-radius: 4px;
  box-shadow: rgba(0, 0, 0, 0.2) 0 1px 16px -1px;
  padding: 17px 20px;
  transform-origin: 0% 50%;
  width: 350px;
}
.new-feed-teaser-content::before {
  top: 50%;
  left: -8px;
  position: absolute;
  width: 0;
  height: 0;
  border-bottom: 8px solid transparent;
  border-right: 8px solid #fafafa;
  border-top: 8px solid transparent;
  content: "";
  margin-top: -8px;
}
.new-feed-teaser-content__header {
  font-weight: bold;
  margin-bottom: 20px;
}
.new-feed-teaser-content__description {
  font-size: 14px;
  line-height: 1.3em;
  margin-bottom: 10px;
  padding-bottom: 0;
}
.new-feed-teaser-content__close-button {
  text-align: right;
}

.pagination {
  display: table;
  margin: 22px auto 0;
}
.pagination li {
  display: inline-block;
  font-size: 12px;
  margin: 0 0 0 -1px;
}
.pagination li a,
.pagination li span {
  border: 1px solid #e6eaec;
  color: #767676;
  display: block;
  line-height: 12px;
  padding: 9px 0;
  position: relative;
  text-align: center;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  width: 35px;
}
.pagination li a:hover,
.pagination li span:hover {
  color: #073572;
}
.pagination li a::after,
.pagination li span::after {
  background-color: transparent;
  bottom: -1px;
  height: 2px;
  left: -1px;
  right: -1px;
  z-index: 10;
}
.pagination li:first-child {
  margin-left: 0;
}
.pagination li:first-child a {
  border-bottom-left-radius: 4px;
  border-top-left-radius: 4px;
}
.pagination li:last-child a {
  border-bottom-right-radius: 4px;
  border-top-right-radius: 4px;
}
.pagination li.disabled a {
  color: #b7b7b7;
  cursor: not-allowed;
}
.pagination li.active a {
  color: #073572;
}
.pagination li.active a::after {
  background-color: #073572;
}
.pagination li.dots span {
  pointer-events: none;
}

.pill-tab {
  border-color: #c9d2d6;
  color: #767676;
  padding-left: 1em;
  padding-right: 1em;
  text-align: center;
}
.pill-tab:hover, .pill-tab:focus, .pill-tab--active {
  border-bottom: 1px solid #073572;
  color: #073572;
}

.people-list {
  align-items: center;
  display: flex;
}
.people-list__remaining-people-number {
  width: 17px;
  height: 17px;
  background-color: #9eb2c0;
  border-radius: 17px;
  color: #fff;
  font-size: 12px;
  font-weight: bold;
  line-height: 17px;
  text-align: center;
}
.people-list__dropdown {
  max-width: 297px;
  padding: 10px;
}

.quick-filters {
  align-items: center;
  display: flex;
}
.quick-filters__list {
  align-items: center;
  display: flex;
  flex-flow: row wrap;
}
.quick-filters__list-item {
  margin: 3px 0 3px 6px;
}

.quality-bar {
  background-color: #e4e4e4;
  border-radius: 10px;
  height: 100%;
  min-width: 8px;
  position: relative;
  width: 8px;
}

.quality-bar__graph {
  border-radius: 5px;
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 100%;
}

.quality-bar--low {
  background-color: #ef5555;
}

.quality-bar--medium {
  background-color: #ffa363;
}

.quality-bar--high {
  background-color: #7ed320;
}

.social-media-plugin-content {
  background: #fff;
  min-height: 127px;
  padding: 0;
  position: absolute;
  right: -5px;
  top: 30px;
  width: 366px;
}
.social-media-plugin-content::before {
  right: 10px;
}
.social-media-plugin-content .load-indicator {
  position: absolute;
  right: 48%;
  top: 20%;
  z-index: -1;
}
.social-media-plugin-twitter {
  padding: 8px;
}
.social-media-plugin-twitter-padding {
  padding: 8px;
}
.social-media-plugin-not-found {
  background: #fff;
  color: #000;
  font-size: 10px;
  height: 50%;
  padding: 20px;
  position: absolute;
  right: 25%;
  text-align: center;
  top: 25%;
  width: 50%;
  z-index: -1;
}
.social-media-plugin-not-found .hidden {
  display: none;
}
.social-media-plugin-dropdown .ember-basic-dropdown-trigger:focus {
  outline: none;
}

.star-rating {
  font-size: 12px;
}
.star-rating .icon {
  color: #ffa363;
}

.lead-tag-editor {
  font-size: 14px;
  max-height: 70vh;
  overflow-y: scroll;
  padding: 15px 20px;
}
.lead-tag-editor .lead-tag-label {
  margin: 0;
}

.lead-tag-editor-load-error {
  text-align: center;
}

.lead-tag-editor-list {
  display: flex;
  flex-wrap: wrap;
  margin: 10px 0;
}
.lead-tag-editor-list .lead-tag-label {
  margin: 4px 4px 4px 0;
}

.tag-editor-list {
  margin: 0 -7px;
}

.tag-edit-row {
  border-radius: 5px;
  display: flex;
  padding: 5px 7px;
}
.tag-edit-row > .icon {
  align-self: center;
  font-size: 12px;
  margin-right: 5px;
}
.tag-edit-row:hover:not(.editing) {
  background-color: #fafafa;
}
.tag-edit-row input {
  font-size: 12px;
  height: 27px;
  padding: 0.5em 0.75em;
  width: 100%;
}
.tag-edit-row .color-picker {
  margin-right: 8px;
}
.tag-edit-row .color-picker button {
  margin: 0;
}

.tag-edit-row-name {
  flex: 1;
}

.tag-edit-row-actions {
  align-items: right;
  display: flex;
  flex: 1;
  font-size: 12px;
  justify-content: flex-end;
  margin-left: 10px;
  min-width: 80px;
  position: relative;
}
.tag-edit-row-actions > * {
  margin-left: 5px;
}
.tag-edit-row-actions span {
  margin-top: 6px;
}

.tag-editor-create {
  display: flex;
  margin-bottom: 20px;
}
.tag-editor-create input {
  flex: 1;
}
.tag-editor-create .color-picker button {
  font-size: 16px;
  height: 40px;
  margin: 0 12px 0 6px;
  width: 40px;
}

.lead-tag-label,
.tag-label-more {
  border-radius: 9999px;
  cursor: pointer;
  display: inline-block;
  font-size: 12px;
  line-height: 1.2;
  margin-right: 2px;
  max-height: 32px;
  min-height: 26px;
  padding: 0.5em 0.75em;
  text-align: center;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.lead-tag-label span,
.tag-label-more span {
  line-height: 1.125em;
}
.lead-tag-label.compact,
.tag-label-more.compact {
  font-size: 11px;
  padding: 3px 6px;
}
.lead-tag-label.compact span,
.tag-label-more.compact span {
  line-height: 1.125em;
}

.ember-power-select-multiple-options input {
  box-shadow: none;
  height: 100%;
  margin-top: 0;
}
.ember-power-select-multiple-options input:focus {
  box-shadow: none;
}

.ember-power-select-multiple-remove-btn {
  font-size: 18px;
  position: absolute;
  right: 8px;
  z-index: 2;
}

.user-tag-label-name {
  align-items: center;
  display: flex;
  min-height: 20px;
}
.user-tag-label-name .avatar-item {
  margin-right: 6px;
}

.tag-label-more {
  border: 1px solid #e6eaec;
}

.tag-name-edit {
  min-width: 50px;
  outline: 0;
}

.people-timeline-item {
  margin: 4px 5px;
}
.people-timeline-item:hover .people-timeline-item__primary-content, .people-timeline-item.active .people-timeline-item__primary-content {
  border-color: #469bdc;
}
.people-timeline-item.active .people-timeline-item__primary-content {
  background-color: #fff;
  box-shadow: 0 0 8px rgba(50, 50, 50, 0.1);
}
.people-timeline-item:first-child {
  margin-top: 5px;
}
.people-timeline-item__link {
  display: flex;
  font-size: 0.8rem;
  line-height: 0.8rem;
  transition: margin-left 0.5s ease;
}
.people-timeline-item__primary-content {
  background-color: #fff;
  border-color: transparent;
  border-radius: 3px;
  border-style: solid;
  border-width: 1px;
  cursor: pointer;
  display: flex;
  flex: row;
  flex: 1 1 auto;
  padding: 8px 13px 8px 10px;
  position: relative;
  transition: background-color 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  width: 100%;
}
.people-timeline-item__primary-content .quality-bar-tooltip {
  height: 100%;
}
.people-timeline-item__primary-content--person {
  padding: 17px 18px 17px 10px;
}
.people-timeline-item__avatar {
  align-items: center;
  display: flex;
  justify-content: center;
  margin: 0 10px;
}
.people-timeline-item__info-area {
  align-self: center;
  flex: 100;
  min-width: 0;
}
.people-timeline-item__name {
  color: #404b55;
  font-weight: 600;
  line-height: 1.25em;
  position: relative;
}
.people-timeline-item__details {
  align-items: center;
  display: flex;
  flex: 1;
  margin-top: 5px;
  min-width: 0;
}

.timeline-item {
  margin: 4px 5px;
}
.timeline-item:hover .timeline-item__primary-content, .timeline-item.active .timeline-item__primary-content {
  border-color: #073572;
}
.timeline-item.active .timeline-item__primary-content {
  background-color: #fff;
  box-shadow: 0 0 8px rgba(50, 50, 50, 0.1);
}
.timeline-item:first-child {
  margin-top: 5px;
}
.timeline-item__link {
  display: flex;
  font-size: 0.8rem;
  line-height: 0.8rem;
  transition: margin-left 0.5s ease;
}
.timeline-item__primary-content {
  background-color: #fff;
  border-color: transparent;
  border-radius: 3px;
  border-style: solid;
  border-width: 1px;
  cursor: pointer;
  display: flex;
  flex: 1 1 auto;
  padding: 8px 13px 8px 10px;
  position: relative;
  transition: background-color 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  width: 100%;
}
.timeline-item__primary-content .quality-bar-tooltip {
  height: 100%;
}
.timeline-item__primary-content--person {
  padding: 17px 18px 17px 10px;
}
.timeline-item__last-pageview {
  color: #62718a;
  font-size: 12px;
  padding-left: 10px;
  white-space: nowrap;
}
.timeline-item__name-location {
  flex: 1;
  min-width: 0;
  padding-top: 5px;
}
.timeline-item__details-row {
  display: flex;
  width: 100%;
}
.timeline-item__details-container {
  min-width: 0;
  width: 100%;
}
.timeline-item__tags-icons {
  display: flex;
  justify-content: space-between;
  padding-left: 10px;
}
.timeline-item__icons {
  align-items: center;
  display: flex;
  font-size: 17px;
}
.timeline-item .company-picture {
  margin: 0 10px;
}
.timeline-item__avatar {
  align-items: center;
  display: flex;
  margin: 0 10px;
}
.timeline-item__info-area {
  align-self: center;
  flex: 100;
  min-width: 0;
}
.timeline-item__name {
  color: #404b55;
  font-weight: 600;
  line-height: 1.25em;
  position: relative;
}
.timeline-item__details {
  align-items: center;
  display: flex;
  flex: 1;
  margin-top: 5px;
  min-width: 0;
}
.timeline-item__company-secondary-info {
  color: #62718a;
  font-size: 12px;
  line-height: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.timeline-item__company-secondary-info--limit-width {
  max-width: 50%;
}
.timeline-item__company-secondary-info--with-divider {
  border-right: 1px solid #62718a;
  margin-right: 5px;
  padding-right: 5px;
}

.timeline-item-selected .timeline-item:not(.active) .timeline-item__primary-content {
  background-color: #fafafa;
}

.non-clickable .timeline-item {
  cursor: default;
}
.non-clickable .timeline-item:hover {
  background-color: #fafafa;
}

.lead-action-notifications {
  display: flex;
  font-size: 14px;
  height: 20px;
  margin: 4px -2px 0 0;
}
.lead-action-notifications > a {
  text-decoration: none;
}
.lead-action-notifications .lead-action-notification {
  margin-left: 14px;
}
.lead-action-notifications.lead-action-notifications--with-svg-icons .lead-action-notification {
  margin-left: 12px;
}
.lead-action-notifications .assign-notification__link {
  color: #7ed320;
}
.lead-action-notifications .assign-notification__link:hover {
  color: #62c462;
}
.lead-action-notifications .assign-notification__icon--svg {
  font-size: 16px;
}
.lead-action-notifications .email-notification {
  color: #073572;
}
.lead-action-notifications .email-notification:hover {
  color: #404b55;
}
.lead-action-notifications .email-notification__icon--svg {
  font-size: 17px;
}
.lead-action-notifications .im-notification .icon-slack-logo {
  margin-top: -1px;
  width: 16px;
}
.lead-action-notifications .im-notification .icon-hangouts_chat-logo {
  width: 15px;
}
.lead-action-notifications .follow-notification__icon {
  color: #ffb700;
  font-size: 16px;
  margin-left: -2px;
  margin-right: -3px;
}
.lead-action-notifications .follow-notification__icon--svg {
  color: #ffb700;
  font-size: 17px;
}

.time-picker {
  margin-right: 0;
  margin-right: 35px;
  width: 150px;
}
.time-picker .ember-power-select-status-icon {
  width: 35px;
  height: 100%;
  border-left-color: #b7b7b7;
  border-width: 0 0 0 1px;
  margin-right: 0;
}
.time-picker .ember-power-select-status-icon::after {
  align-items: center;
  color: #b7b7b7;
  content: "\f017";
  display: flex;
  font-family: "fontawesome";
  height: 100%;
  justify-content: space-evenly;
  margin-top: -1px;
}
.time-picker[aria-expanded=true] .ember-power-select-status-icon {
  transform: rotate(0deg);
}

.crm-sync-in-progress-overlay {
  top: 50px;
  left: 0;
  bottom: 0;
  right: 1px;
  position: absolute;
  background-color: rgba(255, 255, 255, 0.75);
  overflow: hidden;
  z-index: 999;
}
.crm-sync-in-progress-overlay__content {
  align-items: center;
  display: flex;
  flex-flow: column;
  height: 100%;
  justify-content: center;
}

.timeline-header-section--separator {
  border-right: 1px solid #e6eaec;
}
.timeline-header-section__heading-container {
  align-items: center;
  display: flex;
}
.timeline-header-section__feed-name {
  background: #fff;
  font-size: 21px;
  margin-bottom: 0;
  max-width: 94%;
  padding: 15px;
}
.timeline-header-section__date-picker {
  margin-bottom: 15px;
  padding: 0 15px;
}
.timeline-header-section__dates {
  align-items: center;
  display: flex;
  font-size: 14px;
  transition: color 0.2s ease-in;
}
.timeline-header-section__dates--disabled {
  cursor: default;
}
.timeline-header-section__dates:not(.timeline-header-section__dates--disabled):hover, .timeline-header-section__dates--active {
  color: #073572;
}
.timeline-header-section__dates:not(.timeline-header-section__dates--disabled):hover .timeline-header-section__full-date-text,
.timeline-header-section__dates:not(.timeline-header-section__dates--disabled):hover .timeline-header-section__calendar-icon,
.timeline-header-section__dates:not(.timeline-header-section__dates--disabled):hover .timeline-header-section__dates-dropdown-icon, .timeline-header-section__dates--active .timeline-header-section__full-date-text,
.timeline-header-section__dates--active .timeline-header-section__calendar-icon,
.timeline-header-section__dates--active .timeline-header-section__dates-dropdown-icon {
  color: #073572;
}
.timeline-header-section__calendar-icon {
  color: #596976;
  transition: inherit;
}
.timeline-header-section__dates-dropdown-icon {
  color: #596976;
  transition: color 0.2s ease-in, transform 0.2s;
}
.timeline-header-section__full-date-text {
  color: #62718a;
  transition: inherit;
}

.timeline-tab-switcher {
  display: flex;
  height: 35px;
  justify-content: space-between;
  min-height: 0;
  padding-left: 0;
  padding-right: 0;
}
.timeline-tab-switcher__tab-wrapper {
  height: 100%;
}
.timeline-tab-switcher__tab-wrapper:last-child {
  border-right: none;
}
.timeline-tab-switcher .tab {
  border-bottom: none;
  font-size: 14px;
  font-weight: bold;
  height: 100%;
  margin: 0;
  padding-left: 15px;
  padding-right: 15px;
  position: relative;
}
.timeline-tab-switcher .tab.active {
  color: #073572;
}
.timeline-tab-switcher .tab.active::after {
  background-color: #073572;
  bottom: 0;
  height: 2px;
  left: -1px;
  right: -1px;
  z-index: 10;
}
.timeline-tab-switcher .count-label {
  bottom: 0;
  font-size: 9px;
  line-height: 1.3em;
  min-height: 19px;
  min-width: 3em;
}

.premium-teaser .tab-wrapper {
  border-right: 0;
}

.tab {
  align-items: center;
  border-bottom: 4px solid transparent;
  color: #9eb2c0;
  cursor: pointer;
  display: flex;
  margin-right: 20px;
  transition-duration: 0.15s;
  transition-property: border-bottom-color color;
  transition-timing-function: ease;
}
.tab:hover, .tab.active {
  color: #073572;
}
.tab:hover .count-label {
  border: 1px solid #073572;
  color: #073572;
}
.tab.active {
  border-bottom-color: #073572;
  cursor: default;
}
.tab.active .count-label {
  background-color: #073572;
  border: 1px solid #073572;
  color: #fff;
  line-height: 1.3em;
}
.tab.active .count-label-loading {
  background-color: #9eb2c0;
  border-color: #9eb2c0;
  opacity: 0.6;
}

.timeline-options {
  border: 1px solid #e6eaec;
  border-bottom: none;
  border-top: 1px solid #e6eaec;
  cursor: default;
  display: flex;
  flex: 1;
  flex-direction: column;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.timeline-options .premium-info {
  padding: 0 25px 20px 10px;
  text-align: center;
  width: 100%;
}
.timeline-options .sorting-option--active {
  color: #073572;
}
.timeline-options__download-link {
  transition: color 0.2s ease-in, background-color 0.2s ease-in;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.timeline-options__download-link.disabled {
  color: #b7b7b7;
  cursor: disabled;
  pointer-events: none;
}

.timeline-search {
  background-color: #fff;
  height: 40px;
  left: 0;
  position: absolute;
  right: 0;
  top: 35px;
  width: 100%;
  z-index: 2;
}

.timeline-sorting-option {
  font-size: 12px;
}
.timeline-sorting-option.timeline-sorting-option--active .top-menu-item-content {
  color: #073572;
}

.timeline-viewer .no-results,
.timeline-viewer .load-error {
  background-color: #fff;
  padding: 20px;
  text-align: center;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.timeline-viewer .load-error {
  align-items: center;
  border-radius: 3px;
  display: flex;
  flex-direction: column;
  height: 130px;
  justify-content: center;
  margin: 5px;
}
.timeline-viewer .no-results {
  display: block;
  font-size: 15px;
  height: 100%;
  margin: 0;
  position: absolute;
  width: 100%;
}
.timeline-viewer .no-results h4 {
  margin-bottom: 5px;
}
.timeline-viewer .no-results img {
  height: 50px;
  margin: 15px 0 6px 3px;
  opacity: 0.7;
  position: relative;
  top: 3px;
  width: 40px;
}
.timeline-viewer .no-results-message-line {
  margin-top: 0.5em;
}
.timeline-viewer .no-results-message-line p {
  line-height: 1.3em;
  padding-bottom: 0.4em;
}
.timeline-viewer .no-results-message-line a {
  line-height: 1em;
}

.activity-row-wrapper {
  display: block;
}
.activity-row-wrapper:nth-child(odd) {
  background-color: #fafafa;
}

.activity-row {
  border-top: 1px solid transparent;
  cursor: pointer;
  display: flex;
  margin-top: -1px;
  transition: background-color 0.15s ease, border-color 0.15s ease;
}
.activity-row:hover:not(.expanded) {
  background-color: rgba(183, 183, 183, 0.1);
}
.activity-row:hover {
  position: relative;
  z-index: 2;
}
.activity-row.expanded {
  border-top-color: #e6eaec;
}

.workflows-tab {
  padding-bottom: 30px;
}

.workflow-form__description {
  color: #999;
  display: flex;
  font-size: 14px;
  margin-top: 20px;
  max-width: 600px;
}
.workflow-form__description .icon-fa-info-circle {
  margin-right: 6px;
  margin-top: 2px;
}
.workflow-form__description--full-line {
  margin-left: -18px;
  margin-top: 10px;
  position: relative;
}
.workflow-form__field {
  flex: 1 0 270px;
  margin: 10px 4px 0;
  max-width: 270px;
}
.workflow-form__field--full-width {
  max-width: 100%;
}
.workflow-form__field--no-label {
  margin-top: 27px;
}
.workflow-form__section-header {
  font-size: 16px;
  font-weight: bold;
  margin-top: 10px;
}
.workflow-form--action-buttons {
  margin-top: 20px;
}
.workflow-form--action-buttons .btn {
  margin-right: 0;
}
.workflow-form--errors-list {
  font-size: 14px;
  margin-top: 8px;
}
.workflow-form--errors-list--error {
  color: #ef5555;
}
.workflow-form--errors-list--error span {
  margin: 0;
}
.workflow-form__label-tooltip {
  display: inline-block;
  font-weight: normal;
  text-transform: none;
}
.workflow-form__configuration-section {
  display: flex;
  flex-wrap: wrap;
  margin-left: -4px;
  max-width: 600px;
}
.workflow-form__input-field {
  width: 100%;
}

.workflows-table {
  margin: 15px 0 40px;
}
.workflows-table__loader {
  width: 80px;
  height: 15px;
  animation: contentPlaceholderBackgroundShimmer 4s infinite linear;
  background: linear-gradient(to right, #eceff0 8%, #dae0e3 18%, #eceff0 33%);
  background-size: 180% 100%;
  max-width: 400px;
  position: relative;
  background-size: 200% 100%;
  border-radius: 3px;
}
.workflows-table__column-actions {
  text-align: right;
  white-space: nowrap;
  width: 100px;
}
.workflows-table__column-status {
  width: 100px;
}
.workflows-table__column-when {
  width: 180px;
}
.workflows-table__column-action {
  max-width: 250px;
}
.workflows-table__column-actions.table__cell, .workflows-table__column-status.table__cell, .workflows-table__column-when.table__cell, .workflows-table__column-action.table__cell {
  height: 65px;
}
.workflows-table__status-text {
  border: 1px solid #ffa363;
  border-radius: 2px;
  color: #ffa363;
  cursor: default;
  font-size: 11px;
  padding: 3px 6px;
  position: relative;
  top: -1px;
  white-space: nowrap;
}
.workflows-table__status-text--active {
  border-color: #62c462;
  color: #62c462;
}
.workflows-table__status-text--editing {
  border-color: #ef5555;
  color: #ef5555;
}
.workflows-table__status-text--broken {
  border-color: #ef5555;
  color: #ef5555;
}
.workflows-table__status-text--paused {
  border-color: #ffa363;
  color: #ffa363;
}
.workflows-table__status-text--modified {
  border-color: #ffa363;
  color: #ffa363;
}
.workflows-table__icon {
  color: inherit;
  cursor: pointer;
  margin: 0 5px;
  transition: color 0.15s ease-in;
}
.workflows-table__icon:hover {
  color: #073572;
}
.workflows-table__icon--disabled {
  cursor: no-drop;
  opacity: 0.5;
}
.workflows-table__icon--remove:hover {
  color: #da595b;
}
.workflows-table__icon--executions {
  color: #404b55;
}

.global-edit-feed-button {
  align-items: center;
  background-color: #fff;
  color: #767676;
  display: flex;
  flex-direction: row-reverse;
}
.global-edit-feed-button__actions {
  display: flex;
  list-style-type: none;
}

.crm-action-fields__description {
  margin-bottom: 15px;
}
.crm-action-fields__field {
  margin: 10px 0 0;
  max-width: calc(50% - 5px);
}
.crm-action-fields__field.error .crm-action-fields__field-input {
  border-color: #f16c6c;
  color: #ef5555;
}
.crm-action-fields__field.error .crm-action-fields__field-input::-webkit-input-placeholder {
  color: #f8b2b2;
}
.crm-action-fields__field.error .crm-action-fields__field-input:-moz-placeholder {
  color: #f8b2b2;
}
.crm-action-fields__field.error .crm-action-fields__field-input::-moz-placeholder {
  color: #f8b2b2;
}
.crm-action-fields__field.error .crm-action-fields__field-input:-ms-input-placeholder {
  color: #f8b2b2;
}
.crm-action-fields__field-input {
  margin-right: 0;
  width: 100%;
}
.crm-action-fields__task-fields {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.crm-action-fields__task-fields .crm-action-fields__field {
  flex: 0 0 calc(50% - 5px);
}
.crm-action-fields__checkboxes {
  margin-bottom: 15px;
}
.crm-action-fields__checkboxes .checkbox-control {
  margin-bottom: 5px;
}

.send-to-crm-fields__section-title {
  align-items: center;
  cursor: pointer;
  display: inline-flex;
  font-size: 16px;
  font-weight: bold;
  margin: 25px auto 10px;
}
.send-to-crm-fields__section-title .checkbox-control--toggle {
  margin-right: 5px;
  position: relative;
}
.send-to-crm-fields__section-title__tooltip-icon {
  font-size: 12px;
}
.send-to-crm-fields__section-disabled-description {
  color: #999;
}
.send-to-crm-fields__task-create-for-radio-buttons {
  margin-bottom: 10px;
  margin-top: 15px;
}
.send-to-crm-fields .task-retry-section {
  margin-top: 20px;
}
.send-to-crm-fields__description-text {
  line-height: 1.4;
}

.crm-modal {
  display: flex;
  flex-flow: column;
  max-height: 610px;
  max-width: 700px;
  width: 100%;
}
.crm-modal__header {
  display: flex;
  flex: 1;
  flex-flow: row nowrap;
  flex-shrink: 0;
  margin-bottom: 10px;
}
.crm-modal__content {
  flex: 1;
  overflow-x: visible;
  overflow-y: auto;
  background: linear-gradient(white 30%, rgba(255, 255, 255, 0)), linear-gradient(rgba(255, 255, 255, 0), white 70%) 0 100%, radial-gradient(farthest-side at 50% 0, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0)), radial-gradient(farthest-side at 50% 100%, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0)) 0 100%;
  /* Opera doesn't support this in the shorthand */
  background-attachment: local, local, scroll, scroll;
  background-color: white;
  background-repeat: no-repeat;
  background-size: 100% 40px, 100% 40px, 100% 14px, 100% 14px;
}
.crm-modal__action-buttons {
  display: flex;
  flex-shrink: 0;
  margin-top: 20px;
}

.email-notifications-advanced-settings {
  border-bottom: 2px solid #e6eaec;
  margin: 20px 0 25px;
  padding: 0 0 25px 25px;
}
.email-notifications-advanced-settings .load-indicator {
  margin-bottom: 30px;
  margin-top: 50px;
}
.email-notifications-advanced-settings .task-retry-section {
  margin: 50px 0 20px;
  text-align: center;
}
.email-notifications-advanced-settings__section {
  margin-top: 25px;
}
.email-notifications-advanced-settings__toggle-icon {
  margin-left: 1px;
  top: 2px;
}
.email-notifications-advanced-settings__toggle--active {
  color: #03132a;
}
.email-notifications-advanced-settings__row {
  margin: 15px 0 20px;
}
.email-notifications-advanced-settings__field {
  width: 240px;
}
.email-notifications-advanced-settings__field:first-child {
  margin-right: 30px;
}
.email-notifications-advanced-settings__field .field {
  margin-top: 15px;
}
.email-notifications-advanced-settings__field .field input {
  width: 150px;
}
.email-notifications-advanced-settings__submit-button {
  min-width: 100px;
}
.email-notifications-advanced-settings__errors-list {
  color: #ef5555;
  font-size: 14px;
  margin-bottom: 20px;
}
.email-notifications-advanced-settings__errors-list li {
  margin: 3px 0;
}
.email-notifications-advanced-settings__footer {
  color: #999;
  font-size: 15px;
  margin-top: 25px;
}
.email-notifications-advanced-settings__footer-info-icon {
  margin-right: 2px;
}

.activities-table__table {
  margin: 25px 30px 15px;
}
.activities-table__expand-column {
  width: 20px;
}
.activities-table__expand-icon {
  color: #073572;
  cursor: pointer;
  display: block;
}
.activities-table__date-column {
  width: 140px;
}
@media (min-width: 1330px) {
  .activities-table__date-column {
    width: 150px;
  }
}
.activities-table__identified-person-column {
  text-align: center;
  width: 44px;
}
@media (min-width: 1330px) {
  .activities-table__identified-person-column {
    width: 55px;
  }
}
.activities-table__type-column {
  width: 52px;
}
.activities-table__source-column {
  width: auto;
}
.activities-table__page-depth-column {
  width: 60px;
}
@media (min-width: 1330px) {
  .activities-table__page-depth-column {
    width: 65px;
  }
}
.activities-table__visit-duration-column {
  width: 75px;
}
@media (min-width: 1330px) {
  .activities-table__visit-duration-column {
    width: 90px;
  }
}
.activities-table__footer {
  top: -1px;
  position: relative;
  font-size: 12px;
  margin-bottom: 15px;
  max-width: 100%;
  text-align: center;
  /* specificity hacking */
  /* stylelint-disable-next-line selector-max-specificity */
}
.activities-table__footer .btn.activities-table__show-all-button {
  height: 100%;
  padding-top: 0;
}

.__cf274__actions-container {
  padding: 0;
  width: 350px;
}
.__cf274__actions-list-item {
  border-bottom: 1px solid #e6eaec;
}
.__cf274__actions-list-item:last-of-type {
  border-bottom-width: 0;
}
.__cf274__actions-list-item--padded {
  padding: 15px 15px 15px 20px;
}
.__cf274__action-btn.btn.btn-link-dark {
  width: 100%;
  height: 56px;
  justify-content: flex-start;
  padding: 0 0 0 20px;
}
.__cf274__action-btn.btn.btn-link-dark.btn.btn-link-dark:hover:not(.disabled):not([disabled]) {
  color: #073572;
}

.__0370c--online {
  color: #7ed320;
}

.__96e99__trigger {
  padding: 12px;
}
.__96e99__trigger-with-items {
  padding: 7px;
  padding-top: 6px;
}

.__7469a__container {
  background: #fafcfc;
}

.__e897d__button:hover {
  color: #073572;
}

.__e897d__icon {
  width: 1.25em;
}
.__e897d__icon:not(.__e897d__icon--brand-icon) {
  color: #62718a;
}

.__9d20b {
  align-items: center;
  display: flex;
  margin: 24px 0;
}
.__9d20b__organization {
  flex: 1;
  text-align: center;
}
.__9d20b__exchange-icon {
  display: flex;
  flex: 1;
  font-size: 2em;
  justify-content: center;
}

.__23362 .no-entries-info {
  text-align: center;
}

.__777ff {
  line-height: 0.8;
  padding-bottom: 5px;
  padding-top: 5px;
}

.__777ff__option-email {
  color: #8c9eab;
  font-size: 12px;
}

.__777ff__option-name {
  display: block;
  font-size: 14px;
}

.__2f3ca {
  background-color: #fff;
  border-bottom: 1px solid #e6eaec;
  box-shadow: 0 0 10px rgba(10, 10, 10, 0.1);
  flex-shrink: 0;
  padding-left: 25px;
  padding-right: 25px;
}
.__2f3ca__back-button {
  color: #b7b7b7;
  margin-left: -25px;
  padding-left: 25px;
  padding-right: 25px;
  transition: color 0.2s ease;
}
@media (max-width: 1380px) {
  .__2f3ca__back-button {
    padding-left: 15px;
    padding-right: 15px;
  }
}
.__2f3ca__back-button:hover {
  color: #073572;
}

.__3dbc4 {
  align-items: flex-start;
}
.__3dbc4__icon--crm-salesforce {
  margin-left: 2px;
  width: 20px;
}
.__3dbc4__icon--crm-pipedrive {
  margin-left: 2px;
  width: 12px;
}
.__3dbc4__icon--crm-dynamics {
  margin-left: 2px;
  width: 11px;
}
.__3dbc4__icon--crm-zoho {
  width: 15px;
}
.__3dbc4__icon--crm-hubspot {
  width: 17px;
}

.__51f67 {
  flex: 1;
  min-height: 37px;
}
.__51f67__content-wrapper {
  padding-right: 20px;
}
.__51f67:last-child .__51f67__content-wrapper {
  padding-right: 0;
}

.__79137 {
  align-items: center;
}
.__79137__icon {
  color: #62718a;
  font-size: 23px;
}

.__1e18a {
  margin-bottom: 0;
}
.__1e18a__content {
  flex: 1 0 0;
  line-height: 1;
  min-width: 0;
}
.__1e18a__lead-name {
  font-size: 22px;
  font-weight: 700;
  line-height: 1.3;
}
.__1e18a__details-item-link {
  line-height: 1;
}
.__1e18a__extended-details-toggle {
  color: #073572;
}
.__1e18a__main .icon-button {
  color: #c1d7e4;
}
.__1e18a__main:hover .icon-button {
  color: #596976;
}

.__3e9e4:not(:first-child) {
  border-top: 2px dashed #e6eaec;
  padding-top: 20px;
}
.__3e9e4:not(:last-child) {
  padding-bottom: 20px;
}

.__bcb6e {
  margin-bottom: 15px;
  margin-top: 5px;
}

.__5337c .upgrade-to-premium {
  margin-top: 25px;
}

.__42878 {
  align-items: center;
  background-color: #fff;
  border-radius: 3px;
  display: flex;
  flex-direction: column;
  margin: 5px;
  padding: 45px 50px 40px;
  text-align: center;
  width: auto;
}
.__42878__logo {
  height: auto;
  margin-bottom: 25px;
}
.__42878__logo--hubspot {
  width: 140px;
}
.__42878__logo--mailchimp {
  width: 70px;
}

.__50573 {
  width: 20px;
  height: 20px;
  color: #c1d7e4;
  padding: 0;
  padding-top: 1px;
}
.__50573[disabled] {
  cursor: default;
}
.__50573[disabled]:hover {
  color: #c1d7e4;
}
.__50573:hover {
  color: #596976;
}
.__50573__active-indicator {
  width: 8px;
  height: 8px;
  top: -1px;
  right: -4px;
  position: absolute;
  background-color: #ef5555;
  border-radius: 50%;
  display: block;
}
.__50573--active {
  color: #073572;
  position: relative;
}
.__50573--active:hover {
  color: #010812;
}

.__d7773__title {
  margin-bottom: 10px;
}
.__d7773__container {
  border: 1px solid #e6eaec;
  border-radius: 3px;
  margin: 20px;
  padding-bottom: 25px;
  padding-left: 20px;
  padding-right: 20px;
  padding-top: 25px;
  text-align: center;
}
.__d7773__text {
  padding-bottom: 0;
}

.__f2145__button:hover {
  color: #05234c;
}
.__f2145__visit-length {
  width: 66px;
}
.__f2145:hover .__f2145__visit-length {
  font-weight: bold;
}
.__f2145__expanded-details {
  width: calc(100% - 66px);
}

.__60374__item:not(:last-child) {
  position: relative;
}
.__60374__item:not(:last-child)::before {
  top: 10px;
  left: 15px;
  bottom: -20px;
  position: absolute;
  background-color: #c1d7e4;
  content: "";
  display: block;
  width: 1px;
}

.__474c4__primary-btn {
  border-bottom: transparent;
  margin-left: 0;
}
.__474c4__primary-btn--has-dropdown {
  border-bottom-right-radius: 0;
  border-right: 1px solid white !important;
  border-top-right-radius: 0;
}
.__474c4__primary-btn--is-open {
  border-bottom-left-radius: 0;
  border-right-color: 1px solid rgba(255, 255, 255, 0) !important;
}
.__474c4__primary-btn--is-open:hover {
  border-right-color: #073572 !important;
}
.__474c4__secondary-btn {
  margin-left: 0;
  min-width: 100%;
  text-align: left;
}
.__474c4__dropdown-btn {
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
  font-size: 17px !important;
  margin-left: 0;
  padding: 8px !important;
}
.__474c4__dropdown-btn:not(.__474c4__dropdown-btn--is-open) {
  border-bottom: none;
  border-top: none;
}
.__474c4__dropdown-btn--is-open {
  border-bottom-right-radius: 0;
}
.__474c4__dropdown-content {
  border-bottom: 1px solid #073572;
  border-left: 1px solid #073572;
  border-radius: 0 0 5px 5px;
  border-right: 1px solid #073572;
  box-shadow: rgba(0, 0, 0, 0.2) 0 4px 5px -1px;
  box-sizing: content-box;
  min-width: -webkit-fill-available;
  min-width: stretch;
  min-width: -moz-available;
  overflow: hidden;
  z-index: 1000;
}

.__b42c9.notification-sent, .__b42c9:hover {
  color: #fff;
}
.__b42c9--slack {
  border-color: #40b994;
  color: #40b994;
}
.__b42c9--slack:hover {
  background-color: #40b994;
}
.__b42c9--slack.notification-sent {
  background-color: #40b994;
}
.__b42c9--slack.notification-sent:hover {
  background-color: #38a282;
  border-color: #38a282;
}
.__b42c9--hangouts_chat {
  border-color: #00897b;
  color: #00897b;
}
.__b42c9--hangouts_chat:hover {
  background-color: #00897b;
}
.__b42c9--hangouts_chat.notification-sent {
  background-color: #00897b;
}
.__b42c9--hangouts_chat.notification-sent:hover {
  background-color: #006a60;
  border-color: #006a60;
}
.__b42c9--hangouts_chat:hover .__b42c9__icon--hangouts_chat::after, .__b42c9--hangouts_chat.notification-sent .__b42c9__icon--hangouts_chat::after {
  opacity: 1;
}
.__b42c9--hangouts_chat:hover .__b42c9__icon--hangouts_chat::before, .__b42c9--hangouts_chat.notification-sent .__b42c9__icon--hangouts_chat::before {
  opacity: 0;
}
.__b42c9__icon--hangouts_chat {
  display: inline-block;
  height: 15px;
  margin-bottom: -4px;
  position: relative;
  width: 13px;
}
.__b42c9__icon--hangouts_chat::before, .__b42c9__icon--hangouts_chat::after {
  top: 0;
  left: 0;
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: 100% auto;
  content: "";
  display: block;
  transition: opacity 0.2s ease;
}
.__b42c9__icon--hangouts_chat::before {
  background-image: url("/assets/images/icons/hangouts_chat.svg");
  opacity: 1;
}
.__b42c9__icon--hangouts_chat::after {
  background-image: url("/assets/images/icons/hangouts_chat_light.svg");
  opacity: 0;
}
.__b42c9__dropdown-trigger:focus {
  outline: none;
}
.__b42c9__dropdown-content {
  font-size: 14px;
  padding: 10px;
  width: 290px;
}
.__b42c9__dropdown-content .load-indicator {
  margin: 10px auto;
}
.__b42c9__dropdown-content--channel {
  height: 33px;
}

.__f9204 {
  min-height: 16px;
}
.__f9204__loader {
  width: 60px;
  height: 15px;
}
.__f9204__loader::before {
  animation: contentPlaceholderBackgroundShimmer 2s infinite linear;
  background: linear-gradient(to right, #fafafa 8%, #dae0e3 18%, #fafafa 33%);
  background-size: 180% 100%;
  max-width: 400px;
  position: relative;
  width: 100%;
  height: 100%;
  background-size: 400% 100%;
  border-radius: 3px;
}

.__69675__info-card-content {
  max-width: 300px;
  min-width: 175px;
}

.__144f9__info-card-content {
  max-width: 300px;
  min-width: 175px;
}

.__144f9--high {
  color: #71bd1d;
}

.__144f9--medium {
  color: #ffa363;
}

.__144f9--low {
  color: #da595b;
}

.__46e77__button-cancel {
  margin-left: -8px;
}
.__46e77__content {
  font-size: 14px;
  padding: 15px;
  width: 260px;
}
.__46e77__content.ember-basic-dropdown-content--right {
  margin-right: 0;
}
.__46e77__actions {
  margin-top: 15px;
}

.__15780__info {
  color: #999;
  font-size: 12px;
  line-height: 1.3em;
  margin-top: 12px;
}
.__15780__info-icon {
  margin-left: 0;
}
.__15780__info-link {
  display: inline-block;
}
.__15780__hide-options {
  margin-top: 12px;
}

.__9cb87__description {
  line-height: 1.3em;
  margin-bottom: 12px;
}
.__9cb87__comment {
  width: 100%;
  height: 60px;
  margin-top: 10px;
  max-height: 150px;
  max-width: 100%;
  min-height: 60px;
  min-width: 100%;
  padding: 5px 10px;
}

.__99b7f {
  align-items: center;
  display: flex;
  font-size: 15px;
  min-height: 20px;
  margin-top: 6px;
  max-height: 25px;
}
.__99b7f--has-icons {
  border-left: 1px solid #e6eaec;
  padding-left: 10px;
}
.__99b7f__icon {
  color: #c1d7e4;
}
.timeline-item:hover .__99b7f__icon, .timeline-item.active .__99b7f__icon {
  color: #596976;
}
.timeline-item:hover .__99b7f__icon .remaining-people-number, .timeline-item.active .__99b7f__icon .remaining-people-number {
  background-color: #596976;
}
.timeline-item:hover .__99b7f__icon path:not(.zoho-icon-z-symbol), .timeline-item.active .__99b7f__icon path:not(.zoho-icon-z-symbol) {
  fill: #596976;
}
.__99b7f__icon:hover, .timeline-item:hover .__99b7f__icon:hover, .timeline-item.active .__99b7f__icon:hover {
  color: #073572;
}
.__99b7f__icon:hover .remaining-people-number, .timeline-item:hover .__99b7f__icon:hover .remaining-people-number, .timeline-item.active .__99b7f__icon:hover .remaining-people-number {
  background-color: #073572;
}
.__99b7f__icon:hover path:not(.zoho-icon-z-symbol), .timeline-item:hover .__99b7f__icon:hover path:not(.zoho-icon-z-symbol), .timeline-item.active .__99b7f__icon:hover path:not(.zoho-icon-z-symbol) {
  fill: #073572;
}
.__99b7f__icon .remaining-people-number {
  background-color: #c1d7e4;
}
.__99b7f__icon path:not(.zoho-icon-z-symbol) {
  fill: #c1d7e4;
}
.__99b7f__icon .mailchimp-info path {
  fill: #c1d7e4;
}
.__99b7f__ems-teaser-icon {
  margin-right: 11px;
  path-fill: #c1d7e4;
}
.__99b7f__ems-teaser-icon:hover path {
  fill: #073572;
}

.__0c345 {
  display: flex;
  flex-grow: 1;
  overflow: hidden;
  position: relative;
}
.__0c345--has-tags::before {
  width: 30px;
  height: 100%;
  background: linear-gradient(to left, #fff, rgba(255, 255, 255, 0));
  pointer-events: none;
  right: 0;
}
.timeline-item-selected .__0c345:not(.__0c345--is-active)::before {
  background: linear-gradient(to left, #fafafa, rgba(255, 255, 255, 0));
}
.__0c345__label {
  border-radius: 9999px;
  font-size: 9px;
  height: 19px;
  line-height: 1;
  margin: 0;
  margin-right: 4px;
  padding-left: 8px;
  padding-right: 8px;
  padding-top: 3px;
  white-space: nowrap;
}

.__3a10e__entry {
  border-left: 1px solid #e6eaec;
  font-size: 12px;
  margin-left: 5px;
  padding-left: 10px;
  transition: border-color 0.2s ease, background-color 0.2s ease;
}
.__3a10e__entry:hover {
  border-left: 2px solid #073572;
  margin-left: 4px;
}
.__3a10e__entry__button:hover {
  color: #073572;
}

.__3c58c {
  margin-left: 25px;
}
.__3c58c__icon-wrapper {
  width: 30px;
  height: 30px;
  top: 5px;
  left: -25px;
  position: absolute;
  align-items: center;
  background-color: #fff;
  border: 1px solid transparent;
  border-radius: 50%;
  color: #62718a;
  display: flex;
  justify-content: center;
  transition: border-color 0.2s ease;
}
.__3c58c__icon-wrapper::after {
  top: 0;
  bottom: 0;
  right: -1px;
  position: absolute;
  background-color: #fff;
  content: "";
  width: 5px;
}
.__3c58c__icon-element {
  font-size: 11px;
}
.__3c58c__toggle-indicator {
  top: 1px;
  position: relative;
  align-self: flex-start;
  height: 20px;
}
.__3c58c__toggle-indicator:not(:first-child) {
  border-left: 1px solid #e6eaec;
  padding-left: 10px;
}

.__8ee93__active-campaign-icon {
  width: 13px;
  height: 13px;
}
.__8ee93__active-campaign-icon path {
  fill: currentColor;
}

.__dc6a6 {
  display: flex;
}
.__dc6a6__crm-logo {
  color: inherit;
  height: 20px;
}
.__dc6a6__crm-logo--salesforce {
  width: 21px;
}
.__dc6a6__crm-logo--salesforce path {
  fill: currentColor;
}
.__dc6a6__crm-logo--pipedrive {
  overflow: initial;
  width: 13px;
}
.__dc6a6__crm-logo--pipedrive path {
  fill: currentColor;
}
.__dc6a6__crm-logo--dynamics {
  width: 15px;
}
.__dc6a6__crm-logo--dynamics path {
  fill: currentColor;
}
.__dc6a6__crm-logo--zoho {
  width: 17px;
}
.__dc6a6__crm-logo--zoho path:first-of-type {
  fill: currentColor;
}
.__dc6a6__crm-logo--zoho path:nth-of-type(2) {
  fill: currentColor;
}
.__dc6a6__crm-logo--zoho path:nth-of-type(3) {
  fill: transparent;
  stroke: currentColor;
  stroke-width: 6px;
}
.__dc6a6__crm-logo--zoho path:last-of-type {
  fill: currentColor;
}
.__dc6a6__crm-logo--hubspot {
  width: 20px;
}
.__dc6a6__crm-logo--hubspot path {
  fill: currentColor;
}

.__446c6 {
  align-items: center;
  display: flex;
  justify-content: flex-start;
}
.__446c6--is-secondary-button {
  border-radius: 0;
}
.__446c6--is-secondary-button:hover {
  background-color: #073572 !important;
}

.__062df {
  font-size: 14px;
  padding: 8px 5px;
}

.__fec83__dropdown .ember-power-select-option {
  font-size: 14px;
  padding-bottom: 6px;
  padding-left: 18px;
  padding-top: 6px;
}
.__fec83__dropdown .ember-power-select-search-input {
  font-size: 14px;
  height: 28px;
}
.__fec83__dropdown .ember-power-select-group-name {
  color: #62718a;
  font-size: 12px;
  font-weight: bold;
  text-transform: uppercase;
}
.__fec83__dropdown--slack.ember-power-select-dropdown {
  border-color: #40b994;
}
.__fec83__dropdown--hangouts-chat.ember-power-select-dropdown {
  border-color: #00897b;
}
.__fec83__trigger {
  max-height: 33px;
}
.__fec83__trigger .ember-power-select-status-icon {
  margin-left: 9px;
  margin-right: 0;
}
.__fec83__trigger[aria-expanded=false] .ember-power-select-status-icon {
  transform: rotate(0);
}
.__fec83__trigger--slack {
  border-color: #40b994;
  color: #40b994;
}
.__fec83__trigger--slack[aria-disabled=true] {
  background-color: #fff;
  color: #40b994;
}
.__fec83__trigger--slack .ember-power-select-status-icon {
  border-color: #40b994 transparent transparent transparent;
}
.__fec83__trigger--slack:focus:not(.disabled):not([disabled]), .__fec83__trigger--slack:hover:not(.disabled):not([disabled]), .__fec83__trigger--slack:active:not(.disabled):not([disabled]), .__fec83__trigger--slack--active:not(.disabled):not([disabled]) {
  background-color: #40b994;
  border-color: #40b994;
  color: #fff;
}
.__fec83__trigger--slack:focus:not(.disabled):not([disabled]) .ember-power-select-status-icon, .__fec83__trigger--slack:hover:not(.disabled):not([disabled]) .ember-power-select-status-icon, .__fec83__trigger--slack:active:not(.disabled):not([disabled]) .ember-power-select-status-icon, .__fec83__trigger--slack--active:not(.disabled):not([disabled]) .ember-power-select-status-icon {
  border-color: #fff transparent transparent transparent;
}
.__fec83__trigger--slack-is-open {
  background-color: #40b994;
  border-color: #40b994;
  color: #fff;
}
.__fec83__trigger--slack-is-open .ember-power-select-status-icon {
  border-color: #fff transparent transparent transparent;
}
.__fec83__trigger--slack-was-sent {
  background-color: #40b994;
  border-color: #40b994;
  color: #fff;
}
.__fec83__trigger--slack-was-sent .ember-power-select-status-icon {
  border-color: #fff transparent transparent transparent;
}
.__fec83__trigger--slack-was-sent:focus:not(.disabled):not([disabled]), .__fec83__trigger--slack-was-sent:hover:not(.disabled):not([disabled]), .__fec83__trigger--slack-was-sent:active:not(.disabled):not([disabled]), .__fec83__trigger--slack-was-sent--active:not(.disabled):not([disabled]) {
  background-color: #38a282;
  border-color: #38a282;
}
.__fec83__trigger--hangouts-chat {
  border-color: #00897b;
  color: #00897b;
}
.__fec83__trigger--hangouts-chat[aria-disabled=true] {
  background-color: #fff;
  color: #00897b;
}
.__fec83__trigger--hangouts-chat .ember-power-select-status-icon {
  border-color: #00897b transparent transparent transparent;
}
.__fec83__trigger--hangouts-chat:focus:not(.disabled):not([disabled]), .__fec83__trigger--hangouts-chat:hover:not(.disabled):not([disabled]), .__fec83__trigger--hangouts-chat:active:not(.disabled):not([disabled]), .__fec83__trigger--hangouts-chat--active:not(.disabled):not([disabled]) {
  background-color: #00897b;
  border-color: #00897b;
  color: #fff;
}
.__fec83__trigger--hangouts-chat:focus:not(.disabled):not([disabled]) .ember-power-select-status-icon, .__fec83__trigger--hangouts-chat:hover:not(.disabled):not([disabled]) .ember-power-select-status-icon, .__fec83__trigger--hangouts-chat:active:not(.disabled):not([disabled]) .ember-power-select-status-icon, .__fec83__trigger--hangouts-chat--active:not(.disabled):not([disabled]) .ember-power-select-status-icon {
  border-color: #fff transparent transparent transparent;
}
.__fec83__trigger--hangouts-chat-is-open {
  background-color: #00897b;
  border-color: #00897b;
  color: #fff;
}
.__fec83__trigger--hangouts-chat-is-open .ember-power-select-status-icon {
  border-color: #fff transparent transparent transparent;
}
.__fec83__trigger--hangouts-chat-was-sent {
  background-color: #00897b;
  border-color: #00897b;
  color: #fff;
}
.__fec83__trigger--hangouts-chat-was-sent .ember-power-select-status-icon {
  border-color: #fff transparent transparent transparent;
}
.__fec83__trigger--hangouts-chat-was-sent:focus:not(.disabled):not([disabled]), .__fec83__trigger--hangouts-chat-was-sent:hover:not(.disabled):not([disabled]), .__fec83__trigger--hangouts-chat-was-sent:active:not(.disabled):not([disabled]), .__fec83__trigger--hangouts-chat-was-sent--active:not(.disabled):not([disabled]) {
  background-color: #006a60;
  border-color: #006a60;
}
.__fec83__trigger--hangouts-chat-is-open .__fec83__icon-hangouts-chat::after, .__fec83__trigger--hangouts-chat-was-sent .__fec83__icon-hangouts-chat::after, .__fec83__trigger:hover .__fec83__icon-hangouts-chat::after, .__fec83__trigger:focus .__fec83__icon-hangouts-chat::after, .__fec83__trigger:active .__fec83__icon-hangouts-chat::after {
  opacity: 1;
}
.__fec83__trigger--hangouts-chat-is-open .__fec83__icon-hangouts-chat::before, .__fec83__trigger--hangouts-chat-was-sent .__fec83__icon-hangouts-chat::before, .__fec83__trigger:hover .__fec83__icon-hangouts-chat::before, .__fec83__trigger:focus .__fec83__icon-hangouts-chat::before, .__fec83__trigger:active .__fec83__icon-hangouts-chat::before {
  opacity: 0;
}
.__fec83__icon-slack {
  margin-right: 5px;
}
.__fec83__icon-hangouts-chat {
  display: inline-block;
  height: 15px;
  margin-right: 5px;
  position: relative;
  top: 1px;
  width: 13px;
}
.__fec83__icon-hangouts-chat::before, .__fec83__icon-hangouts-chat::after {
  top: 0;
  left: 0;
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: 100% auto;
  content: "";
  display: block;
  transition: opacity 0.2s ease;
}
.__fec83__icon-hangouts-chat::before {
  background-image: url("/assets/images/ims/hangouts_chat-f106c31489d3c9994ed316cc2ccdda6b.svg");
  opacity: 1;
}
.__fec83__icon-hangouts-chat::after {
  background-image: url("/assets/images/ims/hangouts_chat_light-fe1dc2e6e61a98f06a783e94faec732d.svg");
  opacity: 0;
}

.__fb233 {
  font-size: 14px;
  padding: 8px 5px;
}

.__6244b {
  height: -moz-min-content;
  height: min-content;
}
.__6244b:not(:first-child) {
  border-left: 1px solid #e6eaec;
  padding-left: 10px;
}

.__351e8 {
  height: 11px;
}
.__351e8 path {
  fill: #62718a;
}

.__b50aa {
  color: #62718a;
  font-size: 12px;
  height: 20px;
}

.__6b513 {
  font-size: 12px;
  height: 20px;
}
.__6b513-icon--active {
  color: #62718a !important;
}

.__5955a {
  align-items: center;
  align-self: flex-start;
  display: flex;
  height: 20px;
}

*, ::before, ::after{
  --tw-border-spacing-x: 0;
  --tw-border-spacing-y: 0;
  --tw-translate-x: 0;
  --tw-translate-y: 0;
  --tw-rotate: 0;
  --tw-skew-x: 0;
  --tw-skew-y: 0;
  --tw-scale-x: 1;
  --tw-scale-y: 1;
  --tw-pan-x:  ;
  --tw-pan-y:  ;
  --tw-pinch-zoom:  ;
  --tw-scroll-snap-strictness: proximity;
  --tw-gradient-from-position:  ;
  --tw-gradient-via-position:  ;
  --tw-gradient-to-position:  ;
  --tw-ordinal:  ;
  --tw-slashed-zero:  ;
  --tw-numeric-figure:  ;
  --tw-numeric-spacing:  ;
  --tw-numeric-fraction:  ;
  --tw-ring-inset:  ;
  --tw-ring-offset-width: 0px;
  --tw-ring-offset-color: #fff;
  --tw-ring-color: rgb(59 130 246 / 0.5);
  --tw-ring-offset-shadow: 0 0 #0000;
  --tw-ring-shadow: 0 0 #0000;
  --tw-shadow: 0 0 #0000;
  --tw-shadow-colored: 0 0 #0000;
  --tw-blur:  ;
  --tw-brightness:  ;
  --tw-contrast:  ;
  --tw-grayscale:  ;
  --tw-hue-rotate:  ;
  --tw-invert:  ;
  --tw-saturate:  ;
  --tw-sepia:  ;
  --tw-drop-shadow:  ;
  --tw-backdrop-blur:  ;
  --tw-backdrop-brightness:  ;
  --tw-backdrop-contrast:  ;
  --tw-backdrop-grayscale:  ;
  --tw-backdrop-hue-rotate:  ;
  --tw-backdrop-invert:  ;
  --tw-backdrop-opacity:  ;
  --tw-backdrop-saturate:  ;
  --tw-backdrop-sepia:  ;
  --tw-contain-size:  ;
  --tw-contain-layout:  ;
  --tw-contain-paint:  ;
  --tw-contain-style:  ;
}

::backdrop{
  --tw-border-spacing-x: 0;
  --tw-border-spacing-y: 0;
  --tw-translate-x: 0;
  --tw-translate-y: 0;
  --tw-rotate: 0;
  --tw-skew-x: 0;
  --tw-skew-y: 0;
  --tw-scale-x: 1;
  --tw-scale-y: 1;
  --tw-pan-x:  ;
  --tw-pan-y:  ;
  --tw-pinch-zoom:  ;
  --tw-scroll-snap-strictness: proximity;
  --tw-gradient-from-position:  ;
  --tw-gradient-via-position:  ;
  --tw-gradient-to-position:  ;
  --tw-ordinal:  ;
  --tw-slashed-zero:  ;
  --tw-numeric-figure:  ;
  --tw-numeric-spacing:  ;
  --tw-numeric-fraction:  ;
  --tw-ring-inset:  ;
  --tw-ring-offset-width: 0px;
  --tw-ring-offset-color: #fff;
  --tw-ring-color: rgb(59 130 246 / 0.5);
  --tw-ring-offset-shadow: 0 0 #0000;
  --tw-ring-shadow: 0 0 #0000;
  --tw-shadow: 0 0 #0000;
  --tw-shadow-colored: 0 0 #0000;
  --tw-blur:  ;
  --tw-brightness:  ;
  --tw-contrast:  ;
  --tw-grayscale:  ;
  --tw-hue-rotate:  ;
  --tw-invert:  ;
  --tw-saturate:  ;
  --tw-sepia:  ;
  --tw-drop-shadow:  ;
  --tw-backdrop-blur:  ;
  --tw-backdrop-brightness:  ;
  --tw-backdrop-contrast:  ;
  --tw-backdrop-grayscale:  ;
  --tw-backdrop-hue-rotate:  ;
  --tw-backdrop-invert:  ;
  --tw-backdrop-opacity:  ;
  --tw-backdrop-saturate:  ;
  --tw-backdrop-sepia:  ;
  --tw-contain-size:  ;
  --tw-contain-layout:  ;
  --tw-contain-paint:  ;
  --tw-contain-style:  ;
}

/* ! tailwindcss v3.4.17 | MIT License | https://tailwindcss.com */

/*
1. Prevent padding and border from affecting element width. (https://github.com/mozdevs/cssremedy/issues/4)
2. Allow adding a border to an element by just adding a border-width. (https://github.com/tailwindcss/tailwindcss/pull/116)
*/

*,
::before,
::after {
  box-sizing: border-box; /* 1 */
  border-width: 0; /* 2 */
  border-style: solid; /* 2 */
  border-color: currentColor; /* 2 */
}

::before,
::after {
  --tw-content: '';
}

/*
1. Use a consistent sensible line-height in all browsers.
2. Prevent adjustments of font size after orientation changes in iOS.
3. Use a more readable tab size.
4. Use the user's configured `sans` font-family by default.
5. Use the user's configured `sans` font-feature-settings by default.
6. Use the user's configured `sans` font-variation-settings by default.
7. Disable tap highlights on iOS
*/

html,
:host {
  line-height: 1.5; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
  -moz-tab-size: 4; /* 3 */
  -o-tab-size: 4;
     tab-size: 4; /* 3 */
  font-family: Lato, sans-serif; /* 4 */
  font-feature-settings: normal; /* 5 */
  font-variation-settings: normal; /* 6 */
  -webkit-tap-highlight-color: transparent; /* 7 */
}

/*
1. Remove the margin in all browsers.
2. Inherit line-height from `html` so users can set them as a class directly on the `html` element.
*/

body {
  margin: 0; /* 1 */
  line-height: inherit; /* 2 */
}

/*
1. Add the correct height in Firefox.
2. Correct the inheritance of border color in Firefox. (https://bugzilla.mozilla.org/show_bug.cgi?id=190655)
3. Ensure horizontal rules are visible by default.
*/

hr {
  height: 0; /* 1 */
  color: inherit; /* 2 */
  border-top-width: 1px; /* 3 */
}

/*
Add the correct text decoration in Chrome, Edge, and Safari.
*/

abbr:where([title]) {
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
}

/*
Remove the default font size and weight for headings.
*/

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
}

/*
Reset links to optimize for opt-in styling instead of opt-out.
*/

a {
  color: inherit;
  text-decoration: inherit;
}

/*
Add the correct font weight in Edge and Safari.
*/

b,
strong {
  font-weight: bolder;
}

/*
1. Use the user's configured `mono` font-family by default.
2. Use the user's configured `mono` font-feature-settings by default.
3. Use the user's configured `mono` font-variation-settings by default.
4. Correct the odd `em` font sizing in all browsers.
*/

code,
kbd,
samp,
pre {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace; /* 1 */
  font-feature-settings: normal; /* 2 */
  font-variation-settings: normal; /* 3 */
  font-size: 1em; /* 4 */
}

/*
Add the correct font size in all browsers.
*/

small {
  font-size: 80%;
}

/*
Prevent `sub` and `sup` elements from affecting the line height in all browsers.
*/

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

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/*
1. Remove text indentation from table contents in Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=999088, https://bugs.webkit.org/show_bug.cgi?id=201297)
2. Correct table border color inheritance in all Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=935729, https://bugs.webkit.org/show_bug.cgi?id=195016)
3. Remove gaps between table borders by default.
*/

table {
  text-indent: 0; /* 1 */
  border-color: inherit; /* 2 */
  border-collapse: collapse; /* 3 */
}

/*
1. Change the font styles in all browsers.
2. Remove the margin in Firefox and Safari.
3. Remove default padding in all browsers.
*/

button,
input,
optgroup,
select,
textarea {
  font-family: inherit; /* 1 */
  font-feature-settings: inherit; /* 1 */
  font-variation-settings: inherit; /* 1 */
  font-size: 100%; /* 1 */
  font-weight: inherit; /* 1 */
  line-height: inherit; /* 1 */
  letter-spacing: inherit; /* 1 */
  color: inherit; /* 1 */
  margin: 0; /* 2 */
  padding: 0; /* 3 */
}

/*
Remove the inheritance of text transform in Edge and Firefox.
*/

button,
select {
  text-transform: none;
}

/*
1. Correct the inability to style clickable types in iOS and Safari.
2. Remove default button styles.
*/

button,
input:where([type='button']),
input:where([type='reset']),
input:where([type='submit']) {
  -webkit-appearance: button; /* 1 */
  background-color: transparent; /* 2 */
  background-image: none; /* 2 */
}

/*
Use the modern Firefox focus style for all focusable elements.
*/

:-moz-focusring {
  outline: auto;
}

/*
Remove the additional `:invalid` styles in Firefox. (https://github.com/mozilla/gecko-dev/blob/2f9eacd9d3d995c937b4251a5557d95d494c9be1/layout/style/res/forms.css#L728-L737)
*/

:-moz-ui-invalid {
  box-shadow: none;
}

/*
Add the correct vertical alignment in Chrome and Firefox.
*/

progress {
  vertical-align: baseline;
}

/*
Correct the cursor style of increment and decrement buttons in Safari.
*/

::-webkit-inner-spin-button,
::-webkit-outer-spin-button {
  height: auto;
}

/*
1. Correct the odd appearance in Chrome and Safari.
2. Correct the outline style in Safari.
*/

[type='search'] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}

/*
Remove the inner padding in Chrome and Safari on macOS.
*/

::-webkit-search-decoration {
  -webkit-appearance: none;
}

/*
1. Correct the inability to style clickable types in iOS and Safari.
2. Change font properties to `inherit` in Safari.
*/

::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/*
Add the correct display in Chrome and Safari.
*/

summary {
  display: list-item;
}

/*
Removes the default spacing and border for appropriate elements.
*/

blockquote,
dl,
dd,
h1,
h2,
h3,
h4,
h5,
h6,
hr,
figure,
p,
pre {
  margin: 0;
}

fieldset {
  margin: 0;
  padding: 0;
}

legend {
  padding: 0;
}

ol,
ul,
menu {
  list-style: none;
  margin: 0;
  padding: 0;
}

/*
Reset default styling for dialogs.
*/

dialog {
  padding: 0;
}

/*
Prevent resizing textareas horizontally by default.
*/

textarea {
  resize: vertical;
}

/*
1. Reset the default placeholder opacity in Firefox. (https://github.com/tailwindlabs/tailwindcss/issues/3300)
2. Set the default placeholder color to the user's configured gray 400 color.
*/

input::-moz-placeholder, textarea::-moz-placeholder {
  opacity: 1; /* 1 */
  color: #9ca3af; /* 2 */
}

input::placeholder,
textarea::placeholder {
  opacity: 1; /* 1 */
  color: #9ca3af; /* 2 */
}

/*
Set the default cursor for buttons.
*/

button,
[role="button"] {
  cursor: pointer;
}

/*
Make sure disabled buttons don't get the pointer cursor.
*/

:disabled {
  cursor: default;
}

/*
1. Make replaced elements `display: block` by default. (https://github.com/mozdevs/cssremedy/issues/14)
2. Add `vertical-align: middle` to align replaced elements more sensibly by default. (https://github.com/jensimmons/cssremedy/issues/14#issuecomment-634934210)
   This can trigger a poorly considered lint error in some tools but is included by design.
*/

img,
svg,
video,
canvas,
audio,
iframe,
embed,
object {
  display: block; /* 1 */
  vertical-align: middle; /* 2 */
}

/*
Constrain images and videos to the parent width and preserve their intrinsic aspect ratio. (https://github.com/mozdevs/cssremedy/issues/14)
*/

img,
video {
  max-width: 100%;
  height: auto;
}

/* Make elements with the HTML hidden attribute stay hidden by default */

[hidden]:where(:not([hidden="until-found"])) {
  display: none;
}
.container{
  width: 100%;
}
@media (min-width: 320px){
  .container{
    max-width: 320px;
  }
}
@media (min-width: 480px){
  .container{
    max-width: 480px;
  }
}
@media (min-width: 575px){
  .container{
    max-width: 575px;
  }
}
@media (min-width: 901px){
  .container{
    max-width: 901px;
  }
}
@media (min-width: 1024px){
  .container{
    max-width: 1024px;
  }
}
@media (min-width: 1280px){
  .container{
    max-width: 1280px;
  }
}
@media (min-width: 1390px){
  .container{
    max-width: 1390px;
  }
}
@media (min-width: 1600px){
  .container{
    max-width: 1600px;
  }
}
@media (min-width: 2240px){
  .container{
    max-width: 2240px;
  }
}
.cell-shadow::after{
  position: absolute;
  right: -30px;
  top: 0px;
  height: 100%;
  width: 30px;
  --tw-shadow: inset 25px 0 10px -20px rgb(0,0,0,0.1);
  --tw-shadow-colored: inset 25px 0 10px -20px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
  --tw-content: "";
  content: var(--tw-content);
}
.cell-shadow{
  overflow: visible !important;
}
.\!button{
  display: inline-flex;
  height: 2.5rem;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  white-space: nowrap;
  border-radius: 5px;
  font-family: Inter, sans-serif;
  outline: 2px solid transparent;
  outline-offset: 2px;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 300ms;
  transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
}
.button{
  display: inline-flex;
  height: 2.5rem;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  white-space: nowrap;
  border-radius: 5px;
  font-family: Inter, sans-serif;
  outline: 2px solid transparent;
  outline-offset: 2px;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 300ms;
  transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
}
.\!button:disabled{
  pointer-events: none;
  opacity: 0.3;
}
.button:disabled{
  pointer-events: none;
  opacity: 0.3;
}
.\!button:focus-visible{
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(4px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
}
.button:focus-visible{
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(4px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
}
.group:focus-visible .\!button{
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(4px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
}
.group:focus-visible .button{
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(4px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
}
.button-default-size{
  height: 2.5rem;
  padding-left: 1rem;
  padding-right: 1rem;
  font-size: 0.875rem;
  line-height: 1.25rem;
}
.button-small-size{
  height: 2rem;
  padding-left: 0.75rem;
  padding-right: 0.75rem;
  font-size: 0.875rem;
  line-height: 1.25rem;
}
.button-tiny-size{
  height: 1.5rem;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
  font-size: 0.75rem;
  line-height: 1rem;
}
.button-filled{
  --tw-bg-opacity: 1;
  background-color: rgb(2 78 193 / var(--tw-bg-opacity, 1));
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity, 1));
}
.button-filled:hover{
  --tw-bg-opacity: 1;
  background-color: rgb(13 66 141 / var(--tw-bg-opacity, 1));
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity, 1));
}
.button-filled:focus-visible{
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(87 157 247 / var(--tw-ring-opacity, 1));
}
.group:focus-visible .button-filled{
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(87 157 247 / var(--tw-ring-opacity, 1));
}
.button-filled:active{
  --tw-bg-opacity: 1;
  background-color: rgb(7 53 114 / var(--tw-bg-opacity, 1));
}
.button-filled:disabled{
  cursor: not-allowed;
  background-color: rgb(22 22 22 / 0.5);
  color: rgb(22 22 22 / 0.75);
  opacity: 0.7;
}
.button-secondary-filled{
  --tw-bg-opacity: 1;
  background-color: rgb(255 190 26 / var(--tw-bg-opacity, 1));
  --tw-text-opacity: 1;
  color: rgb(22 22 22 / var(--tw-text-opacity, 1));
}
.button-secondary-filled:hover{
  background-color: rgb(255 190 26 / var(--tw-bg-opacity, 1));
  --tw-bg-opacity: 1;
  background-color: rgb(242 180 25 / var(--tw-bg-opacity, 1));
  --tw-text-opacity: 1;
  color: rgb(22 22 22 / var(--tw-text-opacity, 1));
}
.button-secondary-filled:focus-visible{
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(87 157 247 / var(--tw-ring-opacity, 1));
}
.group:focus-visible .button-secondary-filled{
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(87 157 247 / var(--tw-ring-opacity, 1));
}
.button-secondary-filled:active{
  --tw-bg-opacity: 1;
  background-color: rgb(255 190 26 / var(--tw-bg-opacity, 1));
}
.button-secondary-filled:disabled{
  cursor: not-allowed;
  background-color: rgb(22 22 22 / 0.5);
  color: rgb(22 22 22 / 0.75);
  opacity: 0.7;
}
.button-outline{
  border-width: 1px;
  border-style: solid;
  --tw-border-opacity: 1;
  border-color: rgb(77 86 102 / var(--tw-border-opacity, 1));
  background-color: transparent;
  --tw-text-opacity: 1;
  color: rgb(77 86 102 / var(--tw-text-opacity, 1));
}
.button-outline:hover{
  --tw-bg-opacity: 1;
  background-color: rgb(219 238 255 / var(--tw-bg-opacity, 1));
  --tw-text-opacity: 1;
  color: rgb(77 86 102 / var(--tw-text-opacity, 1));
}
.button-outline:focus-visible{
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(87 157 247 / var(--tw-ring-opacity, 1));
}
.group:focus-visible .button-outline{
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(87 157 247 / var(--tw-ring-opacity, 1));
}
.button-outline:active{
  --tw-bg-opacity: 1;
  background-color: rgb(219 238 255 / var(--tw-bg-opacity, 1));
}
.button-outline:disabled{
  cursor: not-allowed;
  --tw-border-opacity: 1;
  border-color: rgb(155 166 185 / var(--tw-border-opacity, 1));
  --tw-text-opacity: 1;
  color: rgb(155 166 185 / var(--tw-text-opacity, 1));
  opacity: 1;
}
.button-outline-dark{
  border-width: 1px;
  border-style: solid;
  --tw-border-opacity: 1;
  border-color: rgb(255 255 255 / var(--tw-border-opacity, 1));
  background-color: transparent;
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity, 1));
}
.button-outline-dark:hover{
  background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1));
  --tw-bg-opacity: 0.2;
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity, 1));
}
.button-outline-dark:focus-visible{
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(87 157 247 / var(--tw-ring-opacity, 1));
}
.group:focus-visible .button-outline-dark{
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(87 157 247 / var(--tw-ring-opacity, 1));
}
.button-outline-dark:active{
  background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1));
  --tw-bg-opacity: 0.4;
}
.button-outline-dark:disabled{
  cursor: not-allowed;
  opacity: 0.5;
}
.button-text{
  height: auto;
  width: auto;
  border-radius: 0px;
  padding-left: 0px;
  padding-right: 0px;
  font-family: Inter, sans-serif;
  --tw-text-opacity: 1;
  color: rgb(77 86 102 / var(--tw-text-opacity, 1));
  margin-left: 0;
  margin-right: 0;
}
.button-text:hover{
  --tw-bg-opacity: 1;
  background-color: rgb(240 242 245 / var(--tw-bg-opacity, 1));
  --tw-text-opacity: 1;
  color: rgb(22 22 22 / var(--tw-text-opacity, 1));
}
.button-text:focus-visible{
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(223 230 240 / var(--tw-ring-opacity, 1));
}
.group:focus-visible .button-text{
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(223 230 240 / var(--tw-ring-opacity, 1));
}
.button-text:active{
  --tw-bg-opacity: 1;
  background-color: rgb(223 230 240 / var(--tw-bg-opacity, 1));
  --tw-text-opacity: 1;
  color: rgb(22 22 22 / var(--tw-text-opacity, 1));
}
.button-text:disabled{
  cursor: not-allowed;
  --tw-text-opacity: 1;
  color: rgb(155 166 185 / var(--tw-text-opacity, 1));
  opacity: 1;
}
.button-link{
  height: auto;
  width: auto;
  cursor: pointer;
  border-radius: 0px;
  padding-left: 0px;
  padding-right: 0px;
  font-family: Inter, sans-serif;
  --tw-text-opacity: 1;
  color: rgb(27 112 240 / var(--tw-text-opacity, 1));
  text-decoration-line: underline;
  margin-left: 0;
  margin-right: 0;
}
.button-link:hover{
  --tw-text-opacity: 1;
  color: rgb(2 78 193 / var(--tw-text-opacity, 1));
}
.button-link:active{
  --tw-text-opacity: 1;
  color: rgb(2 78 193 / var(--tw-text-opacity, 1));
}
.button-link:disabled{
  cursor: not-allowed;
  --tw-text-opacity: 1;
  color: rgb(155 166 185 / var(--tw-text-opacity, 1));
  opacity: 1;
}
.button-transparent{
  --tw-text-opacity: 1;
  color: rgb(77 86 102 / var(--tw-text-opacity, 1));
}
.button-transparent:hover{
  background-color: rgb(7 53 114 / 0.25);
  --tw-text-opacity: 1;
  color: rgb(77 86 102 / var(--tw-text-opacity, 1));
}
.button-transparent:focus-visible{
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(87 157 247 / var(--tw-ring-opacity, 1));
}
.group:focus-visible .button-transparent{
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(87 157 247 / var(--tw-ring-opacity, 1));
}
.button-transparent:active{
  background-color: rgb(7 53 114 / 0.5);
}
.button-transparent:disabled{
  cursor: not-allowed;
  --tw-text-opacity: 1;
  color: rgb(155 166 185 / var(--tw-text-opacity, 1));
  opacity: 1;
}
.button-transparent-active{
  background-color: rgb(7 53 114 / 0.5);
}
.button-pill{
  --tw-text-opacity: 1;
  color: rgb(77 86 102 / var(--tw-text-opacity, 1));
  border-radius: 1.5rem;
  border-width: 1px;
  border-style: solid;
  --tw-border-opacity: 1;
  border-color: rgb(155 166 185 / var(--tw-border-opacity, 1));
}
.button-pill:hover{
  background-color: rgb(7 53 114 / 0.25);
  --tw-text-opacity: 1;
  color: rgb(77 86 102 / var(--tw-text-opacity, 1));
}
.button-pill:focus-visible{
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(87 157 247 / var(--tw-ring-opacity, 1));
}
.group:focus-visible .button-pill{
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(87 157 247 / var(--tw-ring-opacity, 1));
}
.button-pill:active{
  background-color: rgb(7 53 114 / 0.5);
}
.button-pill:disabled{
  cursor: not-allowed;
  --tw-border-opacity: 1;
  border-color: rgb(155 166 185 / var(--tw-border-opacity, 1));
  --tw-text-opacity: 1;
  color: rgb(155 166 185 / var(--tw-text-opacity, 1));
  opacity: 1;
}
.button-secondary-pill{
  --tw-bg-opacity: 1;
  background-color: rgb(77 86 102 / var(--tw-bg-opacity, 1));
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity, 1));
  border-radius: 1.5rem;
}
.button-secondary-pill:hover{
  --tw-bg-opacity: 1;
  background-color: rgb(22 22 22 / var(--tw-bg-opacity, 1));
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity, 1));
}
.group:hover .button-secondary-pill{
  --tw-bg-opacity: 1;
  background-color: rgb(22 22 22 / var(--tw-bg-opacity, 1));
}
.button-secondary-pill:focus-visible{
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(87 157 247 / var(--tw-ring-opacity, 1));
}
.group:focus-visible .button-secondary-pill{
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(87 157 247 / var(--tw-ring-opacity, 1));
}
.button-secondary-pill:active{
  --tw-bg-opacity: 1;
  background-color: rgb(22 22 22 / var(--tw-bg-opacity, 1));
}
.button-secondary-pill:disabled{
  cursor: not-allowed;
  background-color: rgb(22 22 22 / 0.5);
  color: rgb(22 22 22 / 0.75);
  opacity: 0.7;
}
.button-danger{
  --tw-bg-opacity: 1;
  background-color: rgb(244 77 68 / var(--tw-bg-opacity, 1));
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity, 1));
}
.button-danger:hover{
  --tw-bg-opacity: 1;
  background-color: rgb(182 94 99 / var(--tw-bg-opacity, 1));
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity, 1));
}
.button-danger:focus-visible{
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(255 239 238 / var(--tw-ring-opacity, 1));
}
.group:focus-visible .button-danger{
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(255 239 238 / var(--tw-ring-opacity, 1));
}
.button-danger:active{
  --tw-bg-opacity: 1;
  background-color: rgb(135 79 82 / var(--tw-bg-opacity, 1));
}
.button-danger:disabled{
  cursor: not-allowed;
  background-color: rgb(22 22 22 / 0.5);
  color: rgb(22 22 22 / 0.75);
  opacity: 0.7;
}
.button-legacy-target{
  display: inline-flex;
  height: 2rem;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: 5px;
  border-width: 2px;
  border-style: solid;
  --tw-border-opacity: 1;
  border-color: rgb(188 202 208 / var(--tw-border-opacity, 1));
  padding-left: 1rem;
  padding-right: 1rem;
  font-weight: 700;
  --tw-text-opacity: 1;
  color: rgb(117 137 147 / var(--tw-text-opacity, 1));
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.button-legacy-target:hover:enabled{
  --tw-bg-opacity: 1;
  background-color: rgb(245 249 251 / var(--tw-bg-opacity, 1));
  --tw-text-opacity: 1;
  color: rgb(10 10 10 / var(--tw-text-opacity, 1));
}
.button-legacy-target:disabled{
  cursor: not-allowed;
  opacity: 0.5;
}
.input-text, .select{
  border-radius: 5px !important;
  border-width: 1px !important;
  border-style: solid !important;
  --tw-border-opacity: 1 !important;
  border-color: rgb(206 218 237 / var(--tw-border-opacity, 1)) !important;
  padding-left: 0.5rem !important;
  padding-right: 0.5rem !important;
  padding-top: 0.625rem !important;
  padding-bottom: 0.625rem !important;
  font-family: Inter, sans-serif !important;
  font-size: 0.875rem !important;
  line-height: 1.25rem !important;
  --tw-text-opacity: 1 !important;
  color: rgb(55 62 73 / var(--tw-text-opacity, 1)) !important;
  outline-width: 0px !important;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke !important;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1) !important;
  transition-duration: 150ms !important;
}
 .\!select{
  border-radius: 5px !important;
  border-width: 1px !important;
  border-style: solid !important;
  --tw-border-opacity: 1 !important;
  border-color: rgb(206 218 237 / var(--tw-border-opacity, 1)) !important;
  padding-left: 0.5rem !important;
  padding-right: 0.5rem !important;
  padding-top: 0.625rem !important;
  padding-bottom: 0.625rem !important;
  font-family: Inter, sans-serif !important;
  font-size: 0.875rem !important;
  line-height: 1.25rem !important;
  --tw-text-opacity: 1 !important;
  color: rgb(55 62 73 / var(--tw-text-opacity, 1)) !important;
  outline-width: 0px !important;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke !important;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1) !important;
  transition-duration: 150ms !important;
}
.input-text:disabled, .select:disabled{
  cursor: not-allowed;
}
 .\!select:disabled{
  cursor: not-allowed;
}
.input-text:focus-visible, .select:focus-visible{
  --tw-border-opacity: 1;
  border-color: rgb(77 86 102 / var(--tw-border-opacity, 1));
}
 .\!select:focus-visible{
  --tw-border-opacity: 1;
  border-color: rgb(77 86 102 / var(--tw-border-opacity, 1));
}
.input-text:hover, .select:hover{
  --tw-bg-opacity: 1 !important;
  background-color: rgb(247 249 252 / var(--tw-bg-opacity, 1)) !important;
}
 .\!select:hover{
  --tw-bg-opacity: 1 !important;
  background-color: rgb(247 249 252 / var(--tw-bg-opacity, 1)) !important;
}
.input-text::-moz-placeholder, .select::-moz-placeholder{
  --tw-text-opacity: 1;
  color: rgb(155 166 185 / var(--tw-text-opacity, 1));
}
.input-text::placeholder, .select::placeholder{
  --tw-text-opacity: 1;
  color: rgb(155 166 185 / var(--tw-text-opacity, 1));
}
 .\!select::-moz-placeholder{
  --tw-text-opacity: 1;
  color: rgb(155 166 185 / var(--tw-text-opacity, 1));
}
 .\!select::placeholder{
  --tw-text-opacity: 1;
  color: rgb(155 166 185 / var(--tw-text-opacity, 1));
}
.\!select {
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 320 512'><path fill='%234D5666' d='M151.5 347.8L3.5 201c-4.7-4.7-4.7-12.3 0-17l19.8-19.8c4.7-4.7 12.3-4.7 17 0L160 282.7l119.7-118.5c4.7-4.7 12.3-4.7 17 0l19.8 19.8c4.7 4.7 4.7 12.3 0 17l-148 146.8c-4.7 4.7-12.3 4.7-17 0z'/></svg>") !important;
    background-size: 14px auto !important;
    background-position: right 8px center !important;
  }
.select {
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 320 512'><path fill='%234D5666' d='M151.5 347.8L3.5 201c-4.7-4.7-4.7-12.3 0-17l19.8-19.8c4.7-4.7 12.3-4.7 17 0L160 282.7l119.7-118.5c4.7-4.7 12.3-4.7 17 0l19.8 19.8c4.7 4.7 4.7 12.3 0 17l-148 146.8c-4.7 4.7-12.3 4.7-17 0z'/></svg>");
    background-size: 14px auto;
    background-position: right 8px center;
  }
.\!select{
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-repeat: no-repeat;
}
.select{
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-repeat: no-repeat;
}
.\!select{
  padding-right: 1.75rem !important;
}
.select{
  padding-right: 1.75rem !important;
}
.input-text-validated:not(:focus){
  --tw-border-opacity: 1 !important;
  border-color: rgb(77 86 102 / var(--tw-border-opacity, 1)) !important;
}
.input-text-has-error{
  --tw-border-opacity: 1 !important;
  border-color: rgb(244 77 68 / var(--tw-border-opacity, 1)) !important;
}
.input-text-has-error:focus{
  --tw-border-opacity: 1 !important;
  border-color: rgb(244 77 68 / var(--tw-border-opacity, 1)) !important;
}
.input-text-validation-success{
  --tw-border-opacity: 1 !important;
  border-color: rgb(7 53 114 / var(--tw-border-opacity, 1)) !important;
}
.input-text-validation-success:focus{
  --tw-border-opacity: 1 !important;
  border-color: rgb(7 53 114 / var(--tw-border-opacity, 1)) !important;
}
.link{
  display: inline-block;
  border-width: 0px;
  border-bottom-width: 1px;
  border-style: solid;
  border-color: transparent;
  padding-left: 0.125rem;
  padding-right: 0.125rem;
  font-weight: 600;
  outline: 2px solid transparent;
  outline-offset: 2px;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.link:active{
  margin-bottom: -1px;
  border-bottom-width: 2px;
}
.link:focus-visible{
  outline-style: dashed;
  outline-width: 2px;
  outline-offset: 0px;
}
.link:disabled{
  --tw-text-opacity: 1;
  color: rgb(155 166 185 / var(--tw-text-opacity, 1));
}
.link-blue-dark-mode{
  --tw-text-opacity: 1;
  color: rgb(245 250 255 / var(--tw-text-opacity, 1));
}
.link-blue-dark-mode:hover{
  --tw-border-opacity: 1;
  border-color: rgb(245 250 255 / var(--tw-border-opacity, 1));
}
.link-blue-dark-mode:focus-visible{
  --tw-border-opacity: 1;
  border-color: rgb(245 250 255 / var(--tw-border-opacity, 1));
  --tw-text-opacity: 1;
  color: rgb(27 112 240 / var(--tw-text-opacity, 1));
}
.link-blue-dark-mode:disabled:hover{
  background-color: transparent;
  --tw-text-opacity: 1;
  color: rgb(155 166 185 / var(--tw-text-opacity, 1));
}
.link-blue-light-mode{
  --tw-text-opacity: 1;
  color: rgb(27 112 240 / var(--tw-text-opacity, 1));
}
.link-blue-light-mode:hover{
  --tw-border-opacity: 1;
  border-color: rgb(2 78 193 / var(--tw-border-opacity, 1));
  --tw-text-opacity: 1;
  color: rgb(2 78 193 / var(--tw-text-opacity, 1));
}
.link-blue-light-mode:focus-visible{
  --tw-border-opacity: 1;
  border-color: rgb(27 112 240 / var(--tw-border-opacity, 1));
}
.link-blue-light-mode:disabled:hover{
  background-color: transparent;
  --tw-text-opacity: 1;
  color: rgb(155 166 185 / var(--tw-text-opacity, 1));
}
.link-grey-light-mode{
  --tw-text-opacity: 1;
  color: rgb(77 86 102 / var(--tw-text-opacity, 1));
}
.link-grey-light-mode:hover{
  --tw-border-opacity: 1;
  border-color: rgb(22 22 22 / var(--tw-border-opacity, 1));
  --tw-text-opacity: 1;
  color: rgb(22 22 22 / var(--tw-text-opacity, 1));
}
.link-grey-light-mode:focus-visible{
  --tw-border-opacity: 1;
  border-color: rgb(77 86 102 / var(--tw-border-opacity, 1));
}
.link-grey-light-mode:disabled:hover{
  --tw-text-opacity: 1;
  color: rgb(155 166 185 / var(--tw-text-opacity, 1));
}
.link-grey-dark-mode{
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity, 1));
}
.link-grey-dark-mode:hover{
  --tw-border-opacity: 1;
  border-color: rgb(240 242 245 / var(--tw-border-opacity, 1));
  --tw-text-opacity: 1;
  color: rgb(240 242 245 / var(--tw-text-opacity, 1));
}
.link-grey-dark-mode:focus-visible{
  --tw-border-opacity: 1;
  border-color: rgb(255 255 255 / var(--tw-border-opacity, 1));
}
.link-grey-dark-mode:disabled:hover{
  --tw-text-opacity: 1;
  color: rgb(155 166 185 / var(--tw-text-opacity, 1));
}
.\!notification{
  border-width: 0px !important;
  font-size: 0.875rem !important;
  line-height: 1.25rem !important;
}
.notification{
  border-width: 0px !important;
  font-size: 0.875rem !important;
  line-height: 1.25rem !important;
}
.notification-success{
  --tw-bg-opacity: 1 !important;
  background-color: rgb(73 177 73 / var(--tw-bg-opacity, 1)) !important;
  --tw-text-opacity: 1 !important;
  color: rgb(255 255 255 / var(--tw-text-opacity, 1)) !important;
}
.notification-danger{
  --tw-bg-opacity: 1 !important;
  background-color: rgb(244 77 68 / var(--tw-bg-opacity, 1)) !important;
  --tw-text-opacity: 1 !important;
  color: rgb(255 255 255 / var(--tw-text-opacity, 1)) !important;
}
.notification-info{
  --tw-bg-opacity: 1 !important;
  background-color: rgb(27 112 240 / var(--tw-bg-opacity, 1)) !important;
  --tw-text-opacity: 1 !important;
  color: rgb(255 255 255 / var(--tw-text-opacity, 1)) !important;
}
.notification-warning{
  --tw-bg-opacity: 1 !important;
  background-color: rgb(255 190 26 / var(--tw-bg-opacity, 1)) !important;
  --tw-text-opacity: 1 !important;
  color: rgb(77 86 102 / var(--tw-text-opacity, 1)) !important;
}
.share-panel__loader{
  height: 20px;
  width: 120px;
}
.share-panel__loader::before {
    animation: contentPlaceholderBackgroundShimmer 2s infinite linear;
    background: linear-gradient(to right, #fafafa 8%, #dae0e3 18%, #fafafa 33%);
    background-size: 180% 100%;
    max-width: 400px;
    position: relative;
    height: 100%;
    width: 100%;
    border-radius: 3px;
    background-size: 400% 100%;
  }
.circular-progress-spin {
    animation: stroke-dashoffset-circle-fill 2s cubic-bezier(0.4, 0, 0.2, 1) infinite;
  }
@keyframes stroke-dashoffset-circle-fill {
    0% {
      stroke-dashoffset: 200;
    }
    100% {
      stroke-dashoffset: 0;
    }
  }
.table-column-configuration-column.sortable-item.is-dragging{
  border-style: dashed;
  --tw-border-opacity: 1;
  border-color: rgb(87 157 247 / var(--tw-border-opacity, 1));
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1));
}
.table-column-configuration-column.sortable-item.is-dragging .table-column-configuration-column-icon{
  --tw-text-opacity: 1;
  color: rgb(87 157 247 / var(--tw-text-opacity, 1));
}
.table-column-configuration-column.sortable-item.is-dragging .table-column-configuration-column-action-button-wrapper{
  opacity: 0;
}
.sr-only{
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}
.\!pointer-events-none{
  pointer-events: none !important;
}
.pointer-events-none{
  pointer-events: none;
}
.\!pointer-events-auto{
  pointer-events: auto !important;
}
.pointer-events-auto{
  pointer-events: auto;
}
.visible{
  visibility: visible;
}
.invisible{
  visibility: hidden;
}
.collapse{
  visibility: collapse;
}
.static{
  position: static;
}
.fixed{
  position: fixed;
}
.absolute{
  position: absolute;
}
.relative{
  position: relative;
}
.sticky{
  position: sticky;
}
.inset-0{
  inset: 0px;
}
.inset-x-0{
  left: 0px;
  right: 0px;
}
.inset-y-0{
  top: 0px;
  bottom: 0px;
}
.inset-y-2{
  top: 0.5rem;
  bottom: 0.5rem;
}
.\!bottom-0{
  bottom: 0px !important;
}
.\!top-0{
  top: 0px !important;
}
.-bottom-3\.5{
  bottom: -0.875rem;
}
.-bottom-px{
  bottom: -1px;
}
.-left-\[6px\]{
  left: -6px;
}
.-left-px{
  left: -1px;
}
.-right-1{
  right: -0.25rem;
}
.-top-2{
  top: -0.5rem;
}
.-top-\[5px\]{
  top: -5px;
}
.-top-px{
  top: -1px;
}
.bottom-0{
  bottom: 0px;
}
.bottom-1{
  bottom: 0.25rem;
}
.bottom-2{
  bottom: 0.5rem;
}
.bottom-\[-1px\]{
  bottom: -1px;
}
.bottom-\[-22px\]{
  bottom: -22px;
}
.bottom-\[3px\]{
  bottom: 3px;
}
.left-0{
  left: 0px;
}
.left-1{
  left: 0.25rem;
}
.left-1\.5{
  left: 0.375rem;
}
.left-1\/2{
  left: 50%;
}
.left-3{
  left: 0.75rem;
}
.left-4{
  left: 1rem;
}
.left-8{
  left: 2rem;
}
.left-\[-25px\]{
  left: -25px;
}
.left-\[-46px\]{
  left: -46px;
}
.left-\[12px\]{
  left: 12px;
}
.left-\[50\%\]{
  left: 50%;
}
.right-0{
  right: 0px;
}
.right-1{
  right: 0.25rem;
}
.right-2{
  right: 0.5rem;
}
.right-3{
  right: 0.75rem;
}
.right-4{
  right: 1rem;
}
.right-5{
  right: 1.25rem;
}
.right-6{
  right: 1.5rem;
}
.right-8{
  right: 2rem;
}
.right-\[-2px\]{
  right: -2px;
}
.right-\[-3px\]{
  right: -3px;
}
.right-\[-50px\]{
  right: -50px;
}
.right-\[12px\]{
  right: 12px;
}
.right-\[1px\]{
  right: 1px;
}
.right-\[5px\]{
  right: 5px;
}
.right-full{
  right: 100%;
}
.right-single{
  right: 10px;
}
.top-0{
  top: 0px;
}
.top-0\.5{
  top: 0.125rem;
}
.top-1{
  top: 0.25rem;
}
.top-1\/2{
  top: 50%;
}
.top-2{
  top: 0.5rem;
}
.top-3{
  top: 0.75rem;
}
.top-4{
  top: 1rem;
}
.top-5{
  top: 1.25rem;
}
.top-8{
  top: 2rem;
}
.top-\[-1px\]{
  top: -1px;
}
.top-\[-20px\]{
  top: -20px;
}
.top-\[-25px\]{
  top: -25px;
}
.top-\[10px\]{
  top: 10px;
}
.top-\[12px\]{
  top: 12px;
}
.top-\[14px\]{
  top: 14px;
}
.top-\[27px\]{
  top: 27px;
}
.top-\[2px\]{
  top: 2px;
}
.top-\[3px\]{
  top: 3px;
}
.top-\[4px\]{
  top: 4px;
}
.top-\[50\%\]{
  top: 50%;
}
.top-\[56px\]{
  top: 56px;
}
.top-\[5px\]{
  top: 5px;
}
.top-\[6px\]{
  top: 6px;
}
.top-\[8px\]{
  top: 8px;
}
.top-\[9px\]{
  top: 9px;
}
.top-full{
  top: 100%;
}
.top-platform-header-height{
  top: 56px;
}
.z-0{
  z-index: 0;
}
.z-10{
  z-index: 10;
}
.z-20{
  z-index: 20;
}
.z-30{
  z-index: 30;
}
.z-50{
  z-index: 50;
}
.z-\[10000\]{
  z-index: 10000;
}
.z-\[10001\]{
  z-index: 10001;
}
.z-\[1000\]{
  z-index: 1000;
}
.z-\[1001\]{
  z-index: 1001;
}
.z-\[1004\]{
  z-index: 1004;
}
.z-\[1005\]{
  z-index: 1005;
}
.z-\[100\]{
  z-index: 100;
}
.z-\[101\]{
  z-index: 101;
}
.z-\[10px\]{
  z-index: 10px;
}
.z-\[1\]{
  z-index: 1;
}
.z-\[2001\]{
  z-index: 2001;
}
.z-\[2\]{
  z-index: 2;
}
.z-\[9999\]{
  z-index: 9999;
}
.z-\[999\]{
  z-index: 999;
}
.z-\[99\]{
  z-index: 99;
}
.z-helium-full-search-results{
  z-index: 1004;
}
.z-helium-search-unfocused{
  z-index: 998;
}
.z-tech-bar{
  z-index: 1004;
}
.z-tooltip{
  z-index: 2000;
}
.z-top-navigation{
  z-index: 1003;
}
.col-span-2{
  grid-column: span 2 / span 2;
}
.col-span-3{
  grid-column: span 3 / span 3;
}
.col-start-1{
  grid-column-start: 1;
}
.col-end-3{
  grid-column-end: 3;
}
.float-right{
  float: right;
}
.\!m-0{
  margin: 0px !important;
}
.m-0{
  margin: 0px;
}
.m-2{
  margin: 0.5rem;
}
.m-6{
  margin: 1.5rem;
}
.m-\[-1px\]{
  margin: -1px;
}
.m-auto{
  margin: auto;
}
.\!mx-0{
  margin-left: 0px !important;
  margin-right: 0px !important;
}
.\!mx-auto{
  margin-left: auto !important;
  margin-right: auto !important;
}
.\!my-0{
  margin-top: 0px !important;
  margin-bottom: 0px !important;
}
.-mx-8{
  margin-left: -2rem;
  margin-right: -2rem;
}
.-my-6{
  margin-top: -1.5rem;
  margin-bottom: -1.5rem;
}
.mx-0{
  margin-left: 0px;
  margin-right: 0px;
}
.mx-1{
  margin-left: 0.25rem;
  margin-right: 0.25rem;
}
.mx-2{
  margin-left: 0.5rem;
  margin-right: 0.5rem;
}
.mx-2\.5{
  margin-left: 0.625rem;
  margin-right: 0.625rem;
}
.mx-4{
  margin-left: 1rem;
  margin-right: 1rem;
}
.mx-5{
  margin-left: 1.25rem;
  margin-right: 1.25rem;
}
.mx-6{
  margin-left: 1.5rem;
  margin-right: 1.5rem;
}
.mx-\[-11px\]{
  margin-left: -11px;
  margin-right: -11px;
}
.mx-auto{
  margin-left: auto;
  margin-right: auto;
}
.mx-single{
  margin-left: 10px;
  margin-right: 10px;
}
.my-1{
  margin-top: 0.25rem;
  margin-bottom: 0.25rem;
}
.my-16{
  margin-top: 4rem;
  margin-bottom: 4rem;
}
.my-2{
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
}
.my-3{
  margin-top: 0.75rem;
  margin-bottom: 0.75rem;
}
.my-4{
  margin-top: 1rem;
  margin-bottom: 1rem;
}
.my-5{
  margin-top: 1.25rem;
  margin-bottom: 1.25rem;
}
.my-7{
  margin-top: 1.75rem;
  margin-bottom: 1.75rem;
}
.my-8{
  margin-top: 2rem;
  margin-bottom: 2rem;
}
.my-auto{
  margin-top: auto;
  margin-bottom: auto;
}
.my-half{
  margin-top: 5px;
  margin-bottom: 5px;
}
.my-single{
  margin-top: 10px;
  margin-bottom: 10px;
}
.\!mb-0{
  margin-bottom: 0px !important;
}
.\!mb-2{
  margin-bottom: 0.5rem !important;
}
.\!mb-4{
  margin-bottom: 1rem !important;
}
.\!mb-5{
  margin-bottom: 1.25rem !important;
}
.\!mb-half{
  margin-bottom: 5px !important;
}
.\!ml-0{
  margin-left: 0px !important;
}
.\!ml-1{
  margin-left: 0.25rem !important;
}
.\!ml-4{
  margin-left: 1rem !important;
}
.\!ml-\[-12px\]{
  margin-left: -12px !important;
}
.\!ml-\[10px\]{
  margin-left: 10px !important;
}
.\!mr-0{
  margin-right: 0px !important;
}
.\!mr-1{
  margin-right: 0.25rem !important;
}
.\!mr-2{
  margin-right: 0.5rem !important;
}
.\!mr-\[3px\]{
  margin-right: 3px !important;
}
.\!mt-0{
  margin-top: 0px !important;
}
.\!mt-1{
  margin-top: 0.25rem !important;
}
.\!mt-\[-5px\]{
  margin-top: -5px !important;
}
.-mb-8{
  margin-bottom: -2rem;
}
.-mb-px{
  margin-bottom: -1px;
}
.-ml-1{
  margin-left: -0.25rem;
}
.-ml-2{
  margin-left: -0.5rem;
}
.-ml-3{
  margin-left: -0.75rem;
}
.-ml-5{
  margin-left: -1.25rem;
}
.-ml-\[7px\]{
  margin-left: -7px;
}
.-mr-1{
  margin-right: -0.25rem;
}
.-mr-2{
  margin-right: -0.5rem;
}
.-mr-5{
  margin-right: -1.25rem;
}
.-mt-2{
  margin-top: -0.5rem;
}
.-mt-4{
  margin-top: -1rem;
}
.-mt-5{
  margin-top: -1.25rem;
}
.-mt-\[2px\]{
  margin-top: -2px;
}
.-mt-\[3px\]{
  margin-top: -3px;
}
.-mt-single{
  margin-top: -10px;
}
.mb-0{
  margin-bottom: 0px;
}
.mb-0\.5{
  margin-bottom: 0.125rem;
}
.mb-1{
  margin-bottom: 0.25rem;
}
.mb-1\.5{
  margin-bottom: 0.375rem;
}
.mb-12{
  margin-bottom: 3rem;
}
.mb-14{
  margin-bottom: 3.5rem;
}
.mb-16{
  margin-bottom: 4rem;
}
.mb-2{
  margin-bottom: 0.5rem;
}
.mb-24{
  margin-bottom: 6rem;
}
.mb-3{
  margin-bottom: 0.75rem;
}
.mb-4{
  margin-bottom: 1rem;
}
.mb-5{
  margin-bottom: 1.25rem;
}
.mb-7{
  margin-bottom: 1.75rem;
}
.mb-8{
  margin-bottom: 2rem;
}
.mb-\[100px\]{
  margin-bottom: 100px;
}
.mb-\[1px\]{
  margin-bottom: 1px;
}
.mb-\[22px\]{
  margin-bottom: 22px;
}
.mb-\[30px\]{
  margin-bottom: 30px;
}
.mb-double{
  margin-bottom: 20px;
}
.mb-half{
  margin-bottom: 5px;
}
.mb-single{
  margin-bottom: 10px;
}
.ml-0\.5{
  margin-left: 0.125rem;
}
.ml-1{
  margin-left: 0.25rem;
}
.ml-12{
  margin-left: 3rem;
}
.ml-2{
  margin-left: 0.5rem;
}
.ml-3{
  margin-left: 0.75rem;
}
.ml-4{
  margin-left: 1rem;
}
.ml-5{
  margin-left: 1.25rem;
}
.ml-6{
  margin-left: 1.5rem;
}
.ml-\[-16px\]{
  margin-left: -16px;
}
.ml-\[-20px\]{
  margin-left: -20px;
}
.ml-\[-29px\]{
  margin-left: -29px;
}
.ml-\[-2px\]{
  margin-left: -2px;
}
.ml-\[5px\]{
  margin-left: 5px;
}
.ml-\[65px\]{
  margin-left: 65px;
}
.ml-auto{
  margin-left: auto;
}
.ml-one-and-half{
  margin-left: 15px;
}
.ml-single{
  margin-left: 10px;
}
.mr-0{
  margin-right: 0px;
}
.mr-1{
  margin-right: 0.25rem;
}
.mr-2{
  margin-right: 0.5rem;
}
.mr-2\.5{
  margin-right: 0.625rem;
}
.mr-3{
  margin-right: 0.75rem;
}
.mr-4{
  margin-right: 1rem;
}
.mr-\[-11px\]{
  margin-right: -11px;
}
.mr-\[-1px\]{
  margin-right: -1px;
}
.mr-\[11px\]{
  margin-right: 11px;
}
.mr-\[26px\]{
  margin-right: 26px;
}
.mr-\[5px\]{
  margin-right: 5px;
}
.mr-auto{
  margin-right: auto;
}
.mr-double{
  margin-right: 20px;
}
.mt-0\.5{
  margin-top: 0.125rem;
}
.mt-1{
  margin-top: 0.25rem;
}
.mt-1\.5{
  margin-top: 0.375rem;
}
.mt-10{
  margin-top: 2.5rem;
}
.mt-12{
  margin-top: 3rem;
}
.mt-2{
  margin-top: 0.5rem;
}
.mt-2\.5{
  margin-top: 0.625rem;
}
.mt-20{
  margin-top: 5rem;
}
.mt-3{
  margin-top: 0.75rem;
}
.mt-36{
  margin-top: 9rem;
}
.mt-4{
  margin-top: 1rem;
}
.mt-5{
  margin-top: 1.25rem;
}
.mt-56{
  margin-top: 14rem;
}
.mt-6{
  margin-top: 1.5rem;
}
.mt-7{
  margin-top: 1.75rem;
}
.mt-8{
  margin-top: 2rem;
}
.mt-\[-1px\]{
  margin-top: -1px;
}
.mt-\[-3px\]{
  margin-top: -3px;
}
.mt-\[-52px\]{
  margin-top: -52px;
}
.mt-\[20px\]{
  margin-top: 20px;
}
.mt-\[2px\]{
  margin-top: 2px;
}
.mt-\[33px\]{
  margin-top: 33px;
}
.mt-\[3px\]{
  margin-top: 3px;
}
.mt-auto{
  margin-top: auto;
}
.mt-double{
  margin-top: 20px;
}
.mt-half{
  margin-top: 5px;
}
.mt-px{
  margin-top: 1px;
}
.mt-single{
  margin-top: 10px;
}
.mt-triple{
  margin-top: 30px;
}
.box-border{
  box-sizing: border-box;
}
.box-content{
  box-sizing: content-box;
}
.line-clamp-3{
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}
.\!block{
  display: block !important;
}
.block{
  display: block;
}
.\!inline-block{
  display: inline-block !important;
}
.inline-block{
  display: inline-block;
}
.inline{
  display: inline;
}
.\!flex{
  display: flex !important;
}
.flex{
  display: flex;
}
.inline-flex{
  display: inline-flex;
}
.table{
  display: table;
}
.grid{
  display: grid;
}
.contents{
  display: contents;
}
.\!hidden{
  display: none !important;
}
.hidden{
  display: none;
}
.size-2{
  width: 0.5rem;
  height: 0.5rem;
}
.size-full{
  width: 100%;
  height: 100%;
}
.\!h-10{
  height: 2.5rem !important;
}
.\!h-2{
  height: 0.5rem !important;
}
.\!h-4{
  height: 1rem !important;
}
.\!h-5{
  height: 1.25rem !important;
}
.\!h-8{
  height: 2rem !important;
}
.\!h-\[10px\]{
  height: 10px !important;
}
.\!h-\[200px\]{
  height: 200px !important;
}
.\!h-\[24px\]{
  height: 24px !important;
}
.\!h-\[32px\]{
  height: 32px !important;
}
.\!h-\[38px\]{
  height: 38px !important;
}
.\!h-\[49px\]{
  height: 49px !important;
}
.\!h-auto{
  height: auto !important;
}
.h-0{
  height: 0px;
}
.h-1{
  height: 0.25rem;
}
.h-1\.5{
  height: 0.375rem;
}
.h-1\/2{
  height: 50%;
}
.h-1\/3{
  height: 33.333333%;
}
.h-10{
  height: 2.5rem;
}
.h-11{
  height: 2.75rem;
}
.h-12{
  height: 3rem;
}
.h-14{
  height: 3.5rem;
}
.h-16{
  height: 4rem;
}
.h-2{
  height: 0.5rem;
}
.h-20{
  height: 5rem;
}
.h-24{
  height: 6rem;
}
.h-3{
  height: 0.75rem;
}
.h-3\/4{
  height: 75%;
}
.h-32{
  height: 8rem;
}
.h-4{
  height: 1rem;
}
.h-5{
  height: 1.25rem;
}
.h-6{
  height: 1.5rem;
}
.h-7{
  height: 1.75rem;
}
.h-8{
  height: 2rem;
}
.h-9{
  height: 2.25rem;
}
.h-\[100px\]{
  height: 100px;
}
.h-\[10px\]{
  height: 10px;
}
.h-\[11px\]{
  height: 11px;
}
.h-\[13px\]{
  height: 13px;
}
.h-\[14px\]{
  height: 14px;
}
.h-\[16px\]{
  height: 16px;
}
.h-\[17px\]{
  height: 17px;
}
.h-\[184px\]{
  height: 184px;
}
.h-\[18px\]{
  height: 18px;
}
.h-\[19px\]{
  height: 19px;
}
.h-\[1px\]{
  height: 1px;
}
.h-\[200px\]{
  height: 200px;
}
.h-\[20px\]{
  height: 20px;
}
.h-\[21px\]{
  height: 21px;
}
.h-\[231px\]{
  height: 231px;
}
.h-\[24px\]{
  height: 24px;
}
.h-\[25px\]{
  height: 25px;
}
.h-\[26px\]{
  height: 26px;
}
.h-\[28px\]{
  height: 28px;
}
.h-\[2px\]{
  height: 2px;
}
.h-\[30px\]{
  height: 30px;
}
.h-\[32px\]{
  height: 32px;
}
.h-\[35px\]{
  height: 35px;
}
.h-\[36px\]{
  height: 36px;
}
.h-\[400px\]{
  height: 400px;
}
.h-\[40px\]{
  height: 40px;
}
.h-\[430px\]{
  height: 430px;
}
.h-\[482px\]{
  height: 482px;
}
.h-\[49px\]{
  height: 49px;
}
.h-\[50px\]{
  height: 50px;
}
.h-\[55px\]{
  height: 55px;
}
.h-\[5px\]{
  height: 5px;
}
.h-\[60px\]{
  height: 60px;
}
.h-\[7px\]{
  height: 7px;
}
.h-\[85\%\]{
  height: 85%;
}
.h-\[90dvh\]{
  height: 90dvh;
}
.h-\[90px\]{
  height: 90px;
}
.h-\[92px\]{
  height: 92px;
}
.h-\[calc\(100\%-theme\(spacing\.platform-header-height\)\)\]{
  height: calc(100% - 56px);
}
.h-auto{
  height: auto;
}
.h-full{
  height: 100%;
}
.h-min{
  height: -moz-min-content;
  height: min-content;
}
.h-one-and-half{
  height: 15px;
}
.h-px{
  height: 1px;
}
.h-screen{
  height: 100vh;
}
.h-triple{
  height: 30px;
}
.\!max-h-\[32px\]{
  max-height: 32px !important;
}
.\!max-h-\[42px\]{
  max-height: 42px !important;
}
.max-h-20{
  max-height: 5rem;
}
.max-h-\[100px\]{
  max-height: 100px;
}
.max-h-\[111px\]{
  max-height: 111px;
}
.max-h-\[225px\]{
  max-height: 225px;
}
.max-h-\[25px\]{
  max-height: 25px;
}
.max-h-\[350px\]{
  max-height: 350px;
}
.max-h-\[400px\]{
  max-height: 400px;
}
.max-h-\[45px\]{
  max-height: 45px;
}
.max-h-\[460px\]{
  max-height: 460px;
}
.max-h-\[500px\]{
  max-height: 500px;
}
.max-h-\[565px\]{
  max-height: 565px;
}
.max-h-\[60px\]{
  max-height: 60px;
}
.max-h-\[70vh\]{
  max-height: 70vh;
}
.max-h-\[90px\]{
  max-height: 90px;
}
.max-h-\[calc\(100vh-100px\)\]{
  max-height: calc(100vh - 100px);
}
.max-h-\[calc\(100vh-300px\)\]{
  max-height: calc(100vh - 300px);
}
.max-h-\[calc\(100vh-64px\)\]{
  max-height: calc(100vh - 64px);
}
.max-h-full{
  max-height: 100%;
}
.\!min-h-\[32px\]{
  min-height: 32px !important;
}
.\!min-h-\[72px\]{
  min-height: 72px !important;
}
.\!min-h-\[auto\]{
  min-height: auto !important;
}
.min-h-0{
  min-height: 0px;
}
.min-h-11{
  min-height: 2.75rem;
}
.min-h-32{
  min-height: 8rem;
}
.min-h-\[100px\]{
  min-height: 100px;
}
.min-h-\[170px\]{
  min-height: 170px;
}
.min-h-\[20px\]{
  min-height: 20px;
}
.min-h-\[21px\]{
  min-height: 21px;
}
.min-h-\[231px\]{
  min-height: 231px;
}
.min-h-\[320px\]{
  min-height: 320px;
}
.min-h-\[381px\]{
  min-height: 381px;
}
.min-h-\[40px\]{
  min-height: 40px;
}
.min-h-\[42px\]{
  min-height: 42px;
}
.min-h-\[500px\]{
  min-height: 500px;
}
.min-h-\[50px\]{
  min-height: 50px;
}
.min-h-\[565px\]{
  min-height: 565px;
}
.min-h-\[90px\]{
  min-height: 90px;
}
.min-h-\[92px\]{
  min-height: 92px;
}
.min-h-\[95px\]{
  min-height: 95px;
}
.\!w-1\/2{
  width: 50% !important;
}
.\!w-10{
  width: 2.5rem !important;
}
.\!w-16{
  width: 4rem !important;
}
.\!w-4{
  width: 1rem !important;
}
.\!w-5{
  width: 1.25rem !important;
}
.\!w-6{
  width: 1.5rem !important;
}
.\!w-8{
  width: 2rem !important;
}
.\!w-\[10px\]{
  width: 10px !important;
}
.\!w-\[180px\]{
  width: 180px !important;
}
.\!w-\[24px\]{
  width: 24px !important;
}
.\!w-\[270px\]{
  width: 270px !important;
}
.\!w-\[290px\]{
  width: 290px !important;
}
.\!w-\[300px\]{
  width: 300px !important;
}
.\!w-\[30px\]{
  width: 30px !important;
}
.\!w-\[330px\]{
  width: 330px !important;
}
.\!w-\[40px\]{
  width: 40px !important;
}
.\!w-\[500px\]{
  width: 500px !important;
}
.\!w-\[700px\]{
  width: 700px !important;
}
.\!w-\[710px\]{
  width: 710px !important;
}
.\!w-\[720px\]{
  width: 720px !important;
}
.\!w-auto{
  width: auto !important;
}
.\!w-full{
  width: 100% !important;
}
.w-0{
  width: 0px;
}
.w-1{
  width: 0.25rem;
}
.w-1\/12{
  width: 8.333333%;
}
.w-1\/2{
  width: 50%;
}
.w-1\/3{
  width: 33.333333%;
}
.w-1\/4{
  width: 25%;
}
.w-1\/5{
  width: 20%;
}
.w-10{
  width: 2.5rem;
}
.w-11{
  width: 2.75rem;
}
.w-12{
  width: 3rem;
}
.w-16{
  width: 4rem;
}
.w-2{
  width: 0.5rem;
}
.w-2\/5{
  width: 40%;
}
.w-20{
  width: 5rem;
}
.w-24{
  width: 6rem;
}
.w-3{
  width: 0.75rem;
}
.w-3\/4{
  width: 75%;
}
.w-32{
  width: 8rem;
}
.w-4{
  width: 1rem;
}
.w-4\/5{
  width: 80%;
}
.w-48{
  width: 12rem;
}
.w-5{
  width: 1.25rem;
}
.w-56{
  width: 14rem;
}
.w-6{
  width: 1.5rem;
}
.w-6\/12{
  width: 50%;
}
.w-64{
  width: 16rem;
}
.w-7{
  width: 1.75rem;
}
.w-72{
  width: 18rem;
}
.w-8{
  width: 2rem;
}
.w-9{
  width: 2.25rem;
}
.w-\[1\.25em\]{
  width: 1.25em;
}
.w-\[10\%\]{
  width: 10%;
}
.w-\[1000px\]{
  width: 1000px;
}
.w-\[100px\]{
  width: 100px;
}
.w-\[10px\]{
  width: 10px;
}
.w-\[1100px\]{
  width: 1100px;
}
.w-\[1136px\]{
  width: 1136px;
}
.w-\[115px\]{
  width: 115px;
}
.w-\[117px\]{
  width: 117px;
}
.w-\[12\%\]{
  width: 12%;
}
.w-\[1200px\]{
  width: 1200px;
}
.w-\[120px\]{
  width: 120px;
}
.w-\[1250px\]{
  width: 1250px;
}
.w-\[125px\]{
  width: 125px;
}
.w-\[126px\]{
  width: 126px;
}
.w-\[13\%\]{
  width: 13%;
}
.w-\[132px\]{
  width: 132px;
}
.w-\[13px\]{
  width: 13px;
}
.w-\[14\%\]{
  width: 14%;
}
.w-\[140px\]{
  width: 140px;
}
.w-\[14px\]{
  width: 14px;
}
.w-\[15\%\]{
  width: 15%;
}
.w-\[150px\]{
  width: 150px;
}
.w-\[155px\]{
  width: 155px;
}
.w-\[157px\]{
  width: 157px;
}
.w-\[15px\]{
  width: 15px;
}
.w-\[160px\]{
  width: 160px;
}
.w-\[16px\]{
  width: 16px;
}
.w-\[17\%\]{
  width: 17%;
}
.w-\[17px\]{
  width: 17px;
}
.w-\[18\%\]{
  width: 18%;
}
.w-\[180px\]{
  width: 180px;
}
.w-\[19\%\]{
  width: 19%;
}
.w-\[1px\]{
  width: 1px;
}
.w-\[20\%\]{
  width: 20%;
}
.w-\[200px\]{
  width: 200px;
}
.w-\[204px\]{
  width: 204px;
}
.w-\[20px\]{
  width: 20px;
}
.w-\[21px\]{
  width: 21px;
}
.w-\[22\%\]{
  width: 22%;
}
.w-\[24\%\]{
  width: 24%;
}
.w-\[240px\]{
  width: 240px;
}
.w-\[24px\]{
  width: 24px;
}
.w-\[25\%\]{
  width: 25%;
}
.w-\[250px\]{
  width: 250px;
}
.w-\[25px\]{
  width: 25px;
}
.w-\[260px\]{
  width: 260px;
}
.w-\[266px\]{
  width: 266px;
}
.w-\[26px\]{
  width: 26px;
}
.w-\[270px\]{
  width: 270px;
}
.w-\[28\%\]{
  width: 28%;
}
.w-\[280px\]{
  width: 280px;
}
.w-\[290px\]{
  width: 290px;
}
.w-\[30\%\]{
  width: 30%;
}
.w-\[300px\]{
  width: 300px;
}
.w-\[308px\]{
  width: 308px;
}
.w-\[30px\]{
  width: 30px;
}
.w-\[310px\]{
  width: 310px;
}
.w-\[320px\]{
  width: 320px;
}
.w-\[321px\]{
  width: 321px;
}
.w-\[32px\]{
  width: 32px;
}
.w-\[330px\]{
  width: 330px;
}
.w-\[34\%\]{
  width: 34%;
}
.w-\[343px\]{
  width: 343px;
}
.w-\[350px\]{
  width: 350px;
}
.w-\[360px\]{
  width: 360px;
}
.w-\[370px\]{
  width: 370px;
}
.w-\[4\%\]{
  width: 4%;
}
.w-\[400px\]{
  width: 400px;
}
.w-\[40px\]{
  width: 40px;
}
.w-\[45\%\]{
  width: 45%;
}
.w-\[450px\]{
  width: 450px;
}
.w-\[46\%\]{
  width: 46%;
}
.w-\[464px\]{
  width: 464px;
}
.w-\[480px\]{
  width: 480px;
}
.w-\[500px\]{
  width: 500px;
}
.w-\[50px\]{
  width: 50px;
}
.w-\[52\%\]{
  width: 52%;
}
.w-\[55\%\]{
  width: 55%;
}
.w-\[55px\]{
  width: 55px;
}
.w-\[5px\]{
  width: 5px;
}
.w-\[6\%\]{
  width: 6%;
}
.w-\[60\%\]{
  width: 60%;
}
.w-\[60px\]{
  width: 60px;
}
.w-\[65px\]{
  width: 65px;
}
.w-\[66px\]{
  width: 66px;
}
.w-\[680px\]{
  width: 680px;
}
.w-\[700px\]{
  width: 700px;
}
.w-\[703px\]{
  width: 703px;
}
.w-\[70px\]{
  width: 70px;
}
.w-\[75\%\]{
  width: 75%;
}
.w-\[78px\]{
  width: 78px;
}
.w-\[7px\]{
  width: 7px;
}
.w-\[8\%\]{
  width: 8%;
}
.w-\[800px\]{
  width: 800px;
}
.w-\[85\%\]{
  width: 85%;
}
.w-\[9\%\]{
  width: 9%;
}
.w-\[90dvw\]{
  width: 90dvw;
}
.w-\[935px\]{
  width: 935px;
}
.w-\[calc\(100\%\+2px\)\]{
  width: calc(100% + 2px);
}
.w-\[calc\(100\%-60px\)\]{
  width: calc(100% - 60px);
}
.w-auto{
  width: auto;
}
.w-double{
  width: 20px;
}
.w-form-modal{
  width: 570px;
}
.w-full{
  width: 100%;
}
.w-px{
  width: 1px;
}
.w-screen{
  width: 100vw;
}
.w-triple{
  width: 30px;
}
.\!min-w-0{
  min-width: 0px !important;
}
.\!min-w-\[420px\]{
  min-width: 420px !important;
}
.\!min-w-full{
  min-width: 100% !important;
}
.min-w-0{
  min-width: 0px;
}
.min-w-\[1200px\]{
  min-width: 1200px;
}
.min-w-\[130px\]{
  min-width: 130px;
}
.min-w-\[132px\]{
  min-width: 132px;
}
.min-w-\[140px\]{
  min-width: 140px;
}
.min-w-\[141px\]{
  min-width: 141px;
}
.min-w-\[150px\]{
  min-width: 150px;
}
.min-w-\[170px\]{
  min-width: 170px;
}
.min-w-\[17px\]{
  min-width: 17px;
}
.min-w-\[180px\]{
  min-width: 180px;
}
.min-w-\[18px\]{
  min-width: 18px;
}
.min-w-\[195px\]{
  min-width: 195px;
}
.min-w-\[200px\]{
  min-width: 200px;
}
.min-w-\[204px\]{
  min-width: 204px;
}
.min-w-\[220px\]{
  min-width: 220px;
}
.min-w-\[23px\]{
  min-width: 23px;
}
.min-w-\[24px\]{
  min-width: 24px;
}
.min-w-\[250px\]{
  min-width: 250px;
}
.min-w-\[290px\]{
  min-width: 290px;
}
.min-w-\[300px\]{
  min-width: 300px;
}
.min-w-\[310px\]{
  min-width: 310px;
}
.min-w-\[32px\]{
  min-width: 32px;
}
.min-w-\[380px\]{
  min-width: 380px;
}
.min-w-\[410px\]{
  min-width: 410px;
}
.min-w-\[450px\]{
  min-width: 450px;
}
.min-w-\[500px\]{
  min-width: 500px;
}
.min-w-\[50px\]{
  min-width: 50px;
}
.min-w-\[624px\]{
  min-width: 624px;
}
.min-w-\[710px\]{
  min-width: 710px;
}
.min-w-\[800px\]{
  min-width: 800px;
}
.min-w-\[850px\]{
  min-width: 850px;
}
.min-w-\[8px\]{
  min-width: 8px;
}
.min-w-\[90dvw\]{
  min-width: 90dvw;
}
.min-w-full{
  min-width: 100%;
}
.\!max-w-\[30px\]{
  max-width: 30px !important;
}
.\!max-w-\[40px\]{
  max-width: 40px !important;
}
.\!max-w-\[500px\]{
  max-width: 500px !important;
}
.\!max-w-\[700px\]{
  max-width: 700px !important;
}
.\!max-w-\[710px\]{
  max-width: 710px !important;
}
.\!max-w-\[720px\]{
  max-width: 720px !important;
}
.\!max-w-\[75px\]{
  max-width: 75px !important;
}
.\!max-w-\[90px\]{
  max-width: 90px !important;
}
.\!max-w-full{
  max-width: 100% !important;
}
.max-w-2xl{
  max-width: 42rem;
}
.max-w-5{
  max-width: 1.25rem;
}
.max-w-5xl{
  max-width: 64rem;
}
.max-w-7xl{
  max-width: 80rem;
}
.max-w-\[1100px\]{
  max-width: 1100px;
}
.max-w-\[1160px\]{
  max-width: 1160px;
}
.max-w-\[1200px\]{
  max-width: 1200px;
}
.max-w-\[1320px\]{
  max-width: 1320px;
}
.max-w-\[135px\]{
  max-width: 135px;
}
.max-w-\[1600px\]{
  max-width: 1600px;
}
.max-w-\[200px\]{
  max-width: 200px;
}
.max-w-\[250px\]{
  max-width: 250px;
}
.max-w-\[300px\]{
  max-width: 300px;
}
.max-w-\[310px\]{
  max-width: 310px;
}
.max-w-\[350px\]{
  max-width: 350px;
}
.max-w-\[360px\]{
  max-width: 360px;
}
.max-w-\[380px\]{
  max-width: 380px;
}
.max-w-\[390px\]{
  max-width: 390px;
}
.max-w-\[400px\]{
  max-width: 400px;
}
.max-w-\[450px\]{
  max-width: 450px;
}
.max-w-\[480px\]{
  max-width: 480px;
}
.max-w-\[50\%\]{
  max-width: 50%;
}
.max-w-\[500px\]{
  max-width: 500px;
}
.max-w-\[50px\]{
  max-width: 50px;
}
.max-w-\[520px\]{
  max-width: 520px;
}
.max-w-\[560px\]{
  max-width: 560px;
}
.max-w-\[600px\]{
  max-width: 600px;
}
.max-w-\[68\%\]{
  max-width: 68%;
}
.max-w-\[70\%\]{
  max-width: 70%;
}
.max-w-\[700px\]{
  max-width: 700px;
}
.max-w-\[710px\]{
  max-width: 710px;
}
.max-w-\[757px\]{
  max-width: 757px;
}
.max-w-\[800px\]{
  max-width: 800px;
}
.max-w-\[80px\]{
  max-width: 80px;
}
.max-w-\[820px\]{
  max-width: 820px;
}
.max-w-\[calc\(100\%-180px\)\]{
  max-width: calc(100% - 180px);
}
.max-w-\[calc\(100\%-305px\)\]{
  max-width: calc(100% - 305px);
}
.max-w-\[calc\(100\%-8px\)\]{
  max-width: calc(100% - 8px);
}
.max-w-fit{
  max-width: -moz-fit-content;
  max-width: fit-content;
}
.max-w-form-modal{
  max-width: 570px;
}
.max-w-full{
  max-width: 100%;
}
.max-w-lg{
  max-width: 32rem;
}
.max-w-min{
  max-width: -moz-min-content;
  max-width: min-content;
}
.max-w-none{
  max-width: none;
}
.max-w-screen-xs{
  max-width: 480px;
}
.max-w-sm{
  max-width: 24rem;
}
.max-w-timeline{
  max-width: 38%;
}
.\!flex-1{
  flex: 1 1 0% !important;
}
.flex-1{
  flex: 1 1 0%;
}
.flex-auto{
  flex: 1 1 auto;
}
.flex-none{
  flex: none;
}
.flex-timeline{
  flex: 0 1 38%;
}
.flex-shrink{
  flex-shrink: 1;
}
.flex-shrink-0{
  flex-shrink: 0;
}
.shrink-0{
  flex-shrink: 0;
}
.flex-grow{
  flex-grow: 1;
}
.flex-grow-0{
  flex-grow: 0;
}
.grow{
  flex-grow: 1;
}
.grow-0{
  flex-grow: 0;
}
.basis-1\/2{
  flex-basis: 50%;
}
.basis-\[10\%\]{
  flex-basis: 10%;
}
.basis-\[215px\]{
  flex-basis: 215px;
}
.table-fixed{
  table-layout: fixed;
}
.border-separate{
  border-collapse: separate;
}
.origin-bottom{
  transform-origin: bottom;
}
.\!-translate-x-3{
  --tw-translate-x: -0.75rem !important;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y)) !important;
}
.\!translate-y-\[48px\]{
  --tw-translate-y: 48px !important;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y)) !important;
}
.-translate-x-\[2px\]{
  --tw-translate-x: -2px;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.-translate-x-full{
  --tw-translate-x: -100%;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.-translate-y-1\/2{
  --tw-translate-y: -50%;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.translate-x-0{
  --tw-translate-x: 0px;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.translate-x-\[105\%\]{
  --tw-translate-x: 105%;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.translate-y-3{
  --tw-translate-y: 0.75rem;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.-rotate-90{
  --tw-rotate: -90deg;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.rotate-180{
  --tw-rotate: 180deg;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.rotate-45{
  --tw-rotate: 45deg;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.scale-100{
  --tw-scale-x: 1;
  --tw-scale-y: 1;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.scale-90{
  --tw-scale-x: .9;
  --tw-scale-y: .9;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.-scale-x-100{
  --tw-scale-x: -1;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.scale-y-0{
  --tw-scale-y: 0;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.scale-y-100{
  --tw-scale-y: 1;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.transform{
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
@keyframes appear{
  from{
    opacity: 0;
    transform: scale(0);
  }
  to{
    opacity: 1;
    transform: scale(1);
  }
}
.animate-appear-slow{
  animation: appear 0.6s ease;
}
@keyframes bg-color-cycle{
  0%, 100%{
    background-color: transparent;
  }
  50%{
    background-color: #a1d4ff;
  }
}
.animate-bg-color-cycle{
  animation: bg-color-cycle 1s ease-in-out infinite;
}
@keyframes bounce{
  from, 20%, 53%, to{
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transform: translate3d(0, 0, 0);
  }
  40%, 43%{
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    transform: translate3d(0, -30px, 0) scale3d(1, 1.1, 1);
  }
  70%{
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    transform: translate3d(0, -15px, 0) scale3d(1, 1.05, 1);
  }
  80%{
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transform: translate3d(0, 0, 0) scale3d(1, 0.95, 1);
  }
  90%{
    transform: translate3d(0, -4px, 0) scale3d(1, 1.02, 1);
  }
}
.animate-bounce{
  animation: 1s both bounce;
}
@keyframes fade-in{
  0%{
    opacity: 0;
  }
  100%{
    opacity: 100;
  }
}
.animate-fade-in{
  animation: fade-in 0.3s ease;
}
@keyframes fadeIn{
  from{
    opacity: 0;
  }
}
.animate-fadeIn{
  animation: 1s both fadeIn;
}
@keyframes fadeInDown{
  from{
    transform: translate3d(0, -100%, 0);
    opacity: 0;
  }
}
.animate-fadeInDown{
  animation: 1s both fadeInDown;
}
@keyframes fadeInUp{
  from{
    transform: translate3d(0, 100%, 0);
    opacity: 0;
  }
}
.animate-fadeInUp{
  animation: 1s both fadeInUp;
}
@keyframes loading-pulse{
  0%, 100%{
    opacity: 1;
  }
  50%{
    opacity: .5;
  }
}
.animate-loading-pulse{
  animation: loading-pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}
@keyframes progress-bar-loading{
  from{
    transform: translateX(0);
  }
  to{
    transform: translateX(46px);
  }
}
.animate-progress-bar-loading{
  animation: progress-bar-loading 1.5s linear infinite;
}
@keyframes pulse{
  50%{
    transform: scale3d(1.05, 1.05, 1.05);
  }
}
.animate-pulse-fast{
  animation: pulse 1s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}
.\!cursor-auto{
  cursor: auto !important;
}
.\!cursor-default{
  cursor: default !important;
}
.\!cursor-pointer{
  cursor: pointer !important;
}
.cursor-auto{
  cursor: auto;
}
.cursor-default{
  cursor: default;
}
.cursor-grab{
  cursor: grab;
}
.cursor-help{
  cursor: help;
}
.cursor-not-allowed{
  cursor: not-allowed;
}
.cursor-pointer{
  cursor: pointer;
}
.select-none{
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.resize-none{
  resize: none;
}
.resize{
  resize: both;
}
.list-inside{
  list-style-position: inside;
}
.list-disc{
  list-style-type: disc;
}
.list-none{
  list-style-type: none;
}
.grid-flow-row{
  grid-auto-flow: row;
}
.grid-flow-col{
  grid-auto-flow: column;
}
.\!grid-cols-\[18\%_auto\]{
  grid-template-columns: 18% auto !important;
}
.\!grid-cols-form-fill-submissions-list{
  grid-template-columns: repeat(2, minmax(0, 70px)) !important;
}
.grid-cols-1{
  grid-template-columns: repeat(1, minmax(0, 1fr));
}
.grid-cols-2{
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.grid-cols-3{
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.grid-cols-4{
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.grid-cols-5{
  grid-template-columns: repeat(5, minmax(0, 1fr));
}
.grid-cols-\[1fr_auto\]{
  grid-template-columns: 1fr auto;
}
.grid-cols-\[max-content_auto\]{
  grid-template-columns: max-content auto;
}
.grid-cols-subgrid{
  grid-template-columns: subgrid;
}
.\!flex-row{
  flex-direction: row !important;
}
.flex-row{
  flex-direction: row;
}
.flex-row-reverse{
  flex-direction: row-reverse;
}
.\!flex-col{
  flex-direction: column !important;
}
.flex-col{
  flex-direction: column;
}
.flex-wrap{
  flex-wrap: wrap;
}
.flex-nowrap{
  flex-wrap: nowrap;
}
.content-start{
  align-content: flex-start;
}
.\!items-start{
  align-items: flex-start !important;
}
.items-start{
  align-items: flex-start;
}
.items-end{
  align-items: flex-end;
}
.items-center{
  align-items: center;
}
.items-baseline{
  align-items: baseline;
}
.items-stretch{
  align-items: stretch;
}
.\!justify-normal{
  justify-content: normal !important;
}
.\!justify-start{
  justify-content: flex-start !important;
}
.justify-start{
  justify-content: flex-start;
}
.justify-end{
  justify-content: flex-end;
}
.justify-center{
  justify-content: center;
}
.justify-between{
  justify-content: space-between;
}
.justify-stretch{
  justify-content: stretch;
}
.justify-items-stretch{
  justify-items: stretch;
}
.\!gap-0{
  gap: 0px !important;
}
.\!gap-2{
  gap: 0.5rem !important;
}
.\!gap-4{
  gap: 1rem !important;
}
.\!gap-half{
  gap: 5px !important;
}
.gap-0{
  gap: 0px;
}
.gap-0\.5{
  gap: 0.125rem;
}
.gap-1{
  gap: 0.25rem;
}
.gap-1\.5{
  gap: 0.375rem;
}
.gap-10{
  gap: 2.5rem;
}
.gap-12{
  gap: 3rem;
}
.gap-14{
  gap: 3.5rem;
}
.gap-2{
  gap: 0.5rem;
}
.gap-2\.5{
  gap: 0.625rem;
}
.gap-3{
  gap: 0.75rem;
}
.gap-4{
  gap: 1rem;
}
.gap-5{
  gap: 1.25rem;
}
.gap-6{
  gap: 1.5rem;
}
.gap-7{
  gap: 1.75rem;
}
.gap-8{
  gap: 2rem;
}
.gap-9{
  gap: 2.25rem;
}
.gap-\[16px\]{
  gap: 16px;
}
.gap-\[24px\]{
  gap: 24px;
}
.gap-\[30px\]{
  gap: 30px;
}
.gap-double{
  gap: 20px;
}
.gap-double-and-half{
  gap: 25px;
}
.gap-fifth{
  gap: 2px;
}
.gap-half{
  gap: 5px;
}
.gap-one-and-half{
  gap: 15px;
}
.gap-single{
  gap: 10px;
}
.gap-triple{
  gap: 30px;
}
.\!gap-y-half{
  row-gap: 5px !important;
}
.\!gap-y-single{
  row-gap: 10px !important;
}
.gap-x-12{
  -moz-column-gap: 3rem;
       column-gap: 3rem;
}
.gap-x-4{
  -moz-column-gap: 1rem;
       column-gap: 1rem;
}
.gap-x-5{
  -moz-column-gap: 1.25rem;
       column-gap: 1.25rem;
}
.gap-y-1{
  row-gap: 0.25rem;
}
.gap-y-2{
  row-gap: 0.5rem;
}
.gap-y-3{
  row-gap: 0.75rem;
}
.gap-y-4{
  row-gap: 1rem;
}
.space-x-1 > :not([hidden]) ~ :not([hidden]){
  --tw-space-x-reverse: 0;
  margin-right: calc(0.25rem * var(--tw-space-x-reverse));
  margin-left: calc(0.25rem * calc(1 - var(--tw-space-x-reverse)));
}
.space-x-1\.5 > :not([hidden]) ~ :not([hidden]){
  --tw-space-x-reverse: 0;
  margin-right: calc(0.375rem * var(--tw-space-x-reverse));
  margin-left: calc(0.375rem * calc(1 - var(--tw-space-x-reverse)));
}
.space-x-2 > :not([hidden]) ~ :not([hidden]){
  --tw-space-x-reverse: 0;
  margin-right: calc(0.5rem * var(--tw-space-x-reverse));
  margin-left: calc(0.5rem * calc(1 - var(--tw-space-x-reverse)));
}
.space-x-2\.5 > :not([hidden]) ~ :not([hidden]){
  --tw-space-x-reverse: 0;
  margin-right: calc(0.625rem * var(--tw-space-x-reverse));
  margin-left: calc(0.625rem * calc(1 - var(--tw-space-x-reverse)));
}
.space-x-3 > :not([hidden]) ~ :not([hidden]){
  --tw-space-x-reverse: 0;
  margin-right: calc(0.75rem * var(--tw-space-x-reverse));
  margin-left: calc(0.75rem * calc(1 - var(--tw-space-x-reverse)));
}
.space-x-4 > :not([hidden]) ~ :not([hidden]){
  --tw-space-x-reverse: 0;
  margin-right: calc(1rem * var(--tw-space-x-reverse));
  margin-left: calc(1rem * calc(1 - var(--tw-space-x-reverse)));
}
.space-x-5 > :not([hidden]) ~ :not([hidden]){
  --tw-space-x-reverse: 0;
  margin-right: calc(1.25rem * var(--tw-space-x-reverse));
  margin-left: calc(1.25rem * calc(1 - var(--tw-space-x-reverse)));
}
.space-x-8 > :not([hidden]) ~ :not([hidden]){
  --tw-space-x-reverse: 0;
  margin-right: calc(2rem * var(--tw-space-x-reverse));
  margin-left: calc(2rem * calc(1 - var(--tw-space-x-reverse)));
}
.space-x-\[20px\] > :not([hidden]) ~ :not([hidden]){
  --tw-space-x-reverse: 0;
  margin-right: calc(20px * var(--tw-space-x-reverse));
  margin-left: calc(20px * calc(1 - var(--tw-space-x-reverse)));
}
.space-y-1 > :not([hidden]) ~ :not([hidden]){
  --tw-space-y-reverse: 0;
  margin-top: calc(0.25rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(0.25rem * var(--tw-space-y-reverse));
}
.space-y-1\.5 > :not([hidden]) ~ :not([hidden]){
  --tw-space-y-reverse: 0;
  margin-top: calc(0.375rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(0.375rem * var(--tw-space-y-reverse));
}
.space-y-10 > :not([hidden]) ~ :not([hidden]){
  --tw-space-y-reverse: 0;
  margin-top: calc(2.5rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(2.5rem * var(--tw-space-y-reverse));
}
.space-y-12 > :not([hidden]) ~ :not([hidden]){
  --tw-space-y-reverse: 0;
  margin-top: calc(3rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(3rem * var(--tw-space-y-reverse));
}
.space-y-2 > :not([hidden]) ~ :not([hidden]){
  --tw-space-y-reverse: 0;
  margin-top: calc(0.5rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(0.5rem * var(--tw-space-y-reverse));
}
.space-y-2\.5 > :not([hidden]) ~ :not([hidden]){
  --tw-space-y-reverse: 0;
  margin-top: calc(0.625rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(0.625rem * var(--tw-space-y-reverse));
}
.space-y-3 > :not([hidden]) ~ :not([hidden]){
  --tw-space-y-reverse: 0;
  margin-top: calc(0.75rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(0.75rem * var(--tw-space-y-reverse));
}
.space-y-4 > :not([hidden]) ~ :not([hidden]){
  --tw-space-y-reverse: 0;
  margin-top: calc(1rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(1rem * var(--tw-space-y-reverse));
}
.space-y-5 > :not([hidden]) ~ :not([hidden]){
  --tw-space-y-reverse: 0;
  margin-top: calc(1.25rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(1.25rem * var(--tw-space-y-reverse));
}
.space-y-6 > :not([hidden]) ~ :not([hidden]){
  --tw-space-y-reverse: 0;
  margin-top: calc(1.5rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(1.5rem * var(--tw-space-y-reverse));
}
.space-y-7 > :not([hidden]) ~ :not([hidden]){
  --tw-space-y-reverse: 0;
  margin-top: calc(1.75rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(1.75rem * var(--tw-space-y-reverse));
}
.space-y-8 > :not([hidden]) ~ :not([hidden]){
  --tw-space-y-reverse: 0;
  margin-top: calc(2rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(2rem * var(--tw-space-y-reverse));
}
.divide-x > :not([hidden]) ~ :not([hidden]){
  --tw-divide-x-reverse: 0;
  border-right-width: calc(1px * var(--tw-divide-x-reverse));
  border-left-width: calc(1px * calc(1 - var(--tw-divide-x-reverse)));
}
.divide-y > :not([hidden]) ~ :not([hidden]){
  --tw-divide-y-reverse: 0;
  border-top-width: calc(1px * calc(1 - var(--tw-divide-y-reverse)));
  border-bottom-width: calc(1px * var(--tw-divide-y-reverse));
}
.divide-y-2 > :not([hidden]) ~ :not([hidden]){
  --tw-divide-y-reverse: 0;
  border-top-width: calc(2px * calc(1 - var(--tw-divide-y-reverse)));
  border-bottom-width: calc(2px * var(--tw-divide-y-reverse));
}
.divide-solid > :not([hidden]) ~ :not([hidden]){
  border-style: solid;
}
.divide-grey > :not([hidden]) ~ :not([hidden]){
  --tw-divide-opacity: 1;
  border-color: rgb(230 234 236 / var(--tw-divide-opacity, 1));
}
.divide-platform-neutral-100 > :not([hidden]) ~ :not([hidden]){
  --tw-divide-opacity: 1;
  border-color: rgb(240 242 245 / var(--tw-divide-opacity, 1));
}
.divide-platform-neutral-400 > :not([hidden]) ~ :not([hidden]){
  --tw-divide-opacity: 1;
  border-color: rgb(155 166 185 / var(--tw-divide-opacity, 1));
}
.self-start{
  align-self: flex-start;
}
.self-end{
  align-self: flex-end;
}
.self-center{
  align-self: center;
}
.\!overflow-auto{
  overflow: auto !important;
}
.overflow-auto{
  overflow: auto;
}
.overflow-hidden{
  overflow: hidden;
}
.overflow-visible{
  overflow: visible;
}
.overflow-scroll{
  overflow: scroll;
}
.overflow-y-auto{
  overflow-y: auto;
}
.overflow-x-hidden{
  overflow-x: hidden;
}
.overflow-y-hidden{
  overflow-y: hidden;
}
.overflow-y-scroll{
  overflow-y: scroll;
}
.truncate{
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.text-ellipsis{
  text-overflow: ellipsis;
}
.\!whitespace-normal{
  white-space: normal !important;
}
.whitespace-normal{
  white-space: normal;
}
.whitespace-nowrap{
  white-space: nowrap;
}
.text-nowrap{
  text-wrap: nowrap;
}
.break-words{
  overflow-wrap: break-word;
}
.break-all{
  word-break: break-all;
}
.\!rounded{
  border-radius: 5px !important;
}
.\!rounded-md{
  border-radius: 0.375rem !important;
}
.\!rounded-none{
  border-radius: 0px !important;
}
.rounded{
  border-radius: 5px;
}
.rounded-2xl{
  border-radius: 1rem;
}
.rounded-3xl{
  border-radius: 1.5rem;
}
.rounded-\[5px\]{
  border-radius: 5px;
}
.rounded-\[8px\]{
  border-radius: 8px;
}
.rounded-full{
  border-radius: 9999px;
}
.rounded-lg{
  border-radius: 0.5rem;
}
.rounded-md{
  border-radius: 0.375rem;
}
.rounded-none{
  border-radius: 0px;
}
.rounded-sm{
  border-radius: 3px;
}
.rounded-xl{
  border-radius: 0.75rem;
}
.\!rounded-l-none{
  border-top-left-radius: 0px !important;
  border-bottom-left-radius: 0px !important;
}
.\!rounded-r-none{
  border-top-right-radius: 0px !important;
  border-bottom-right-radius: 0px !important;
}
.rounded-b{
  border-bottom-right-radius: 5px;
  border-bottom-left-radius: 5px;
}
.rounded-b-none{
  border-bottom-right-radius: 0px;
  border-bottom-left-radius: 0px;
}
.rounded-l{
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
}
.rounded-l-none{
  border-top-left-radius: 0px;
  border-bottom-left-radius: 0px;
}
.rounded-r{
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
}
.rounded-r-none{
  border-top-right-radius: 0px;
  border-bottom-right-radius: 0px;
}
.rounded-t{
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}
.\!rounded-bl-none{
  border-bottom-left-radius: 0px !important;
}
.\!rounded-br-none{
  border-bottom-right-radius: 0px !important;
}
.\!rounded-tl-none{
  border-top-left-radius: 0px !important;
}
.\!rounded-tr-none{
  border-top-right-radius: 0px !important;
}
.rounded-bl{
  border-bottom-left-radius: 5px;
}
.rounded-br{
  border-bottom-right-radius: 5px;
}
.rounded-br-3xl{
  border-bottom-right-radius: 1.5rem;
}
.rounded-tl{
  border-top-left-radius: 5px;
}
.rounded-tr{
  border-top-right-radius: 5px;
}
.\!border{
  border-width: 1px !important;
}
.\!border-0{
  border-width: 0px !important;
}
.border{
  border-width: 1px;
}
.border-0{
  border-width: 0px;
}
.border-2{
  border-width: 2px;
}
.border-\[0\.5px\]{
  border-width: 0.5px;
}
.border-\[20px\]{
  border-width: 20px;
}
.border-\[3px\]{
  border-width: 3px;
}
.border-\[4px\]{
  border-width: 4px;
}
.\!border-b-0{
  border-bottom-width: 0px !important;
}
.\!border-r-0{
  border-right-width: 0px !important;
}
.\!border-t-0{
  border-top-width: 0px !important;
}
.border-b{
  border-bottom-width: 1px;
}
.border-b-0{
  border-bottom-width: 0px;
}
.border-b-2{
  border-bottom-width: 2px;
}
.border-l{
  border-left-width: 1px;
}
.border-l-0{
  border-left-width: 0px;
}
.border-l-2{
  border-left-width: 2px;
}
.border-r{
  border-right-width: 1px;
}
.border-r-0{
  border-right-width: 0px;
}
.border-t{
  border-top-width: 1px;
}
.border-t-0{
  border-top-width: 0px;
}
.border-t-2{
  border-top-width: 2px;
}
.\!border-solid{
  border-style: solid !important;
}
.border-solid{
  border-style: solid;
}
.border-dashed{
  border-style: dashed;
}
.\!border-none{
  border-style: none !important;
}
.border-none{
  border-style: none;
}
.\!border-grey-dark-1{
  --tw-border-opacity: 1 !important;
  border-color: rgb(183 183 183 / var(--tw-border-opacity, 1)) !important;
}
.\!border-platform-neutral-100{
  --tw-border-opacity: 1 !important;
  border-color: rgb(240 242 245 / var(--tw-border-opacity, 1)) !important;
}
.\!border-platform-neutral-200{
  --tw-border-opacity: 1 !important;
  border-color: rgb(223 230 240 / var(--tw-border-opacity, 1)) !important;
}
.\!border-platform-neutral-300{
  --tw-border-opacity: 1 !important;
  border-color: rgb(206 218 237 / var(--tw-border-opacity, 1)) !important;
}
.\!border-platform-primary-600{
  --tw-border-opacity: 1 !important;
  border-color: rgb(2 78 193 / var(--tw-border-opacity, 1)) !important;
}
.\!border-platform-system-danger{
  --tw-border-opacity: 1 !important;
  border-color: rgb(244 77 68 / var(--tw-border-opacity, 1)) !important;
}
.\!border-platform-system-success{
  --tw-border-opacity: 1 !important;
  border-color: rgb(73 177 73 / var(--tw-border-opacity, 1)) !important;
}
.\!border-red{
  --tw-border-opacity: 1 !important;
  border-color: rgb(239 85 85 / var(--tw-border-opacity, 1)) !important;
}
.\!border-transparent{
  border-color: transparent !important;
}
.\!border-white{
  --tw-border-opacity: 1 !important;
  border-color: rgb(255 255 255 / var(--tw-border-opacity, 1)) !important;
}
.border-\[\#6c7e8f\]{
  --tw-border-opacity: 1;
  border-color: rgb(108 126 143 / var(--tw-border-opacity, 1));
}
.border-\[\#DFE6F0\]{
  --tw-border-opacity: 1;
  border-color: rgb(223 230 240 / var(--tw-border-opacity, 1));
}
.border-\[\#b7b7b7\]{
  --tw-border-opacity: 1;
  border-color: rgb(183 183 183 / var(--tw-border-opacity, 1));
}
.border-\[\#ffc940\]{
  --tw-border-opacity: 1;
  border-color: rgb(255 201 64 / var(--tw-border-opacity, 1));
}
.border-blue{
  --tw-border-opacity: 1;
  border-color: rgb(7 53 114 / var(--tw-border-opacity, 1));
}
.border-green{
  --tw-border-opacity: 1;
  border-color: rgb(126 211 32 / var(--tw-border-opacity, 1));
}
.border-grey{
  --tw-border-opacity: 1;
  border-color: rgb(230 234 236 / var(--tw-border-opacity, 1));
}
.border-grey-light-2{
  --tw-border-opacity: 1;
  border-color: rgb(247 247 247 / var(--tw-border-opacity, 1));
}
.border-orange{
  --tw-border-opacity: 1;
  border-color: rgb(255 163 99 / var(--tw-border-opacity, 1));
}
.border-platform-extra-purple{
  --tw-border-opacity: 1;
  border-color: rgb(123 38 221 / var(--tw-border-opacity, 1));
}
.border-platform-neutral{
  --tw-border-opacity: 1;
  border-color: rgb(100 111 131 / var(--tw-border-opacity, 1));
}
.border-platform-neutral-100{
  --tw-border-opacity: 1;
  border-color: rgb(240 242 245 / var(--tw-border-opacity, 1));
}
.border-platform-neutral-200{
  --tw-border-opacity: 1;
  border-color: rgb(223 230 240 / var(--tw-border-opacity, 1));
}
.border-platform-neutral-300{
  --tw-border-opacity: 1;
  border-color: rgb(206 218 237 / var(--tw-border-opacity, 1));
}
.border-platform-neutral-400{
  --tw-border-opacity: 1;
  border-color: rgb(155 166 185 / var(--tw-border-opacity, 1));
}
.border-platform-neutral-500{
  --tw-border-opacity: 1;
  border-color: rgb(100 111 131 / var(--tw-border-opacity, 1));
}
.border-platform-neutral-600{
  --tw-border-opacity: 1;
  border-color: rgb(77 86 102 / var(--tw-border-opacity, 1));
}
.border-platform-neutral-800\/25{
  border-color: rgb(33 37 43 / 0.25);
}
.border-platform-neutral-800\/50{
  border-color: rgb(33 37 43 / 0.5);
}
.border-platform-neutral-900{
  --tw-border-opacity: 1;
  border-color: rgb(22 22 22 / var(--tw-border-opacity, 1));
}
.border-platform-neutral-white{
  --tw-border-opacity: 1;
  border-color: rgb(255 255 255 / var(--tw-border-opacity, 1));
}
.border-platform-primary{
  --tw-border-opacity: 1;
  border-color: rgb(7 53 114 / var(--tw-border-opacity, 1));
}
.border-platform-primary-200{
  --tw-border-opacity: 1;
  border-color: rgb(219 238 255 / var(--tw-border-opacity, 1));
}
.border-platform-primary-300{
  --tw-border-opacity: 1;
  border-color: rgb(161 212 255 / var(--tw-border-opacity, 1));
}
.border-platform-primary-400{
  --tw-border-opacity: 1;
  border-color: rgb(87 157 247 / var(--tw-border-opacity, 1));
}
.border-platform-primary-50{
  --tw-border-opacity: 1;
  border-color: rgb(245 250 255 / var(--tw-border-opacity, 1));
}
.border-platform-primary-500{
  --tw-border-opacity: 1;
  border-color: rgb(27 112 240 / var(--tw-border-opacity, 1));
}
.border-platform-primary-600{
  --tw-border-opacity: 1;
  border-color: rgb(2 78 193 / var(--tw-border-opacity, 1));
}
.border-platform-system-danger{
  --tw-border-opacity: 1;
  border-color: rgb(244 77 68 / var(--tw-border-opacity, 1));
}
.border-platform-system-danger-500{
  --tw-border-opacity: 1;
  border-color: rgb(244 77 68 / var(--tw-border-opacity, 1));
}
.border-platform-system-danger-600{
  --tw-border-opacity: 1;
  border-color: rgb(189 52 45 / var(--tw-border-opacity, 1));
}
.border-platform-system-info{
  --tw-border-opacity: 1;
  border-color: rgb(27 112 240 / var(--tw-border-opacity, 1));
}
.border-platform-system-success{
  --tw-border-opacity: 1;
  border-color: rgb(73 177 73 / var(--tw-border-opacity, 1));
}
.border-platform-system-success-500{
  --tw-border-opacity: 1;
  border-color: rgb(73 177 73 / var(--tw-border-opacity, 1));
}
.border-platform-system-warning{
  --tw-border-opacity: 1;
  border-color: rgb(255 190 26 / var(--tw-border-opacity, 1));
}
.border-red-lighter{
  --tw-border-opacity: 1;
  border-color: rgb(241 108 108 / var(--tw-border-opacity, 1));
}
.border-transparent{
  border-color: transparent;
}
.border-white{
  --tw-border-opacity: 1;
  border-color: rgb(255 255 255 / var(--tw-border-opacity, 1));
}
.border-x-platform-neutral-200{
  --tw-border-opacity: 1;
  border-left-color: rgb(223 230 240 / var(--tw-border-opacity, 1));
  border-right-color: rgb(223 230 240 / var(--tw-border-opacity, 1));
}
.border-b-platform-neutral-100{
  --tw-border-opacity: 1;
  border-bottom-color: rgb(240 242 245 / var(--tw-border-opacity, 1));
}
.border-b-platform-neutral-200{
  --tw-border-opacity: 1;
  border-bottom-color: rgb(223 230 240 / var(--tw-border-opacity, 1));
}
.border-t-platform-neutral-200{
  --tw-border-opacity: 1;
  border-top-color: rgb(223 230 240 / var(--tw-border-opacity, 1));
}
.\!bg-platform-extra-purple{
  --tw-bg-opacity: 1 !important;
  background-color: rgb(123 38 221 / var(--tw-bg-opacity, 1)) !important;
}
.\!bg-platform-neutral-100{
  --tw-bg-opacity: 1 !important;
  background-color: rgb(240 242 245 / var(--tw-bg-opacity, 1)) !important;
}
.\!bg-platform-neutral-50{
  --tw-bg-opacity: 1 !important;
  background-color: rgb(247 249 252 / var(--tw-bg-opacity, 1)) !important;
}
.\!bg-platform-neutral-800\/25{
  background-color: rgb(33 37 43 / 0.25) !important;
}
.\!bg-platform-neutral-white{
  --tw-bg-opacity: 1 !important;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1)) !important;
}
.\!bg-platform-primary-200{
  --tw-bg-opacity: 1 !important;
  background-color: rgb(219 238 255 / var(--tw-bg-opacity, 1)) !important;
}
.\!bg-platform-primary-300{
  --tw-bg-opacity: 1 !important;
  background-color: rgb(161 212 255 / var(--tw-bg-opacity, 1)) !important;
}
.\!bg-platform-primary-600{
  --tw-bg-opacity: 1 !important;
  background-color: rgb(2 78 193 / var(--tw-bg-opacity, 1)) !important;
}
.\!bg-platform-primary\/50{
  background-color: rgb(7 53 114 / 0.5) !important;
}
.\!bg-platform-system-danger{
  --tw-bg-opacity: 1 !important;
  background-color: rgb(244 77 68 / var(--tw-bg-opacity, 1)) !important;
}
.\!bg-transparent{
  background-color: transparent !important;
}
.bg-\[\#376ee8\]{
  --tw-bg-opacity: 1;
  background-color: rgb(55 110 232 / var(--tw-bg-opacity, 1));
}
.bg-\[\#617281\]{
  --tw-bg-opacity: 1;
  background-color: rgb(97 114 129 / var(--tw-bg-opacity, 1));
}
.bg-\[\#BCCAD0\]{
  --tw-bg-opacity: 1;
  background-color: rgb(188 202 208 / var(--tw-bg-opacity, 1));
}
.bg-\[\#CDE8FE\]{
  --tw-bg-opacity: 1;
  background-color: rgb(205 232 254 / var(--tw-bg-opacity, 1));
}
.bg-\[\#EEF7FF\]{
  --tw-bg-opacity: 1;
  background-color: rgb(238 247 255 / var(--tw-bg-opacity, 1));
}
.bg-\[\#e5ebf0\]{
  --tw-bg-opacity: 1;
  background-color: rgb(229 235 240 / var(--tw-bg-opacity, 1));
}
.bg-\[\#f0f2f5\]{
  --tw-bg-opacity: 1;
  background-color: rgb(240 242 245 / var(--tw-bg-opacity, 1));
}
.bg-\[\#fffaed\]{
  --tw-bg-opacity: 1;
  background-color: rgb(255 250 237 / var(--tw-bg-opacity, 1));
}
.bg-blue{
  --tw-bg-opacity: 1;
  background-color: rgb(7 53 114 / var(--tw-bg-opacity, 1));
}
.bg-green{
  --tw-bg-opacity: 1;
  background-color: rgb(126 211 32 / var(--tw-bg-opacity, 1));
}
.bg-grey{
  --tw-bg-opacity: 1;
  background-color: rgb(230 234 236 / var(--tw-bg-opacity, 1));
}
.bg-grey-light{
  --tw-bg-opacity: 1;
  background-color: rgb(250 250 250 / var(--tw-bg-opacity, 1));
}
.bg-inherit{
  background-color: inherit;
}
.bg-platform-avatar-1{
  --tw-bg-opacity: 1;
  background-color: rgb(93 34 161 / var(--tw-bg-opacity, 1));
}
.bg-platform-avatar-10{
  --tw-bg-opacity: 1;
  background-color: rgb(10 153 153 / var(--tw-bg-opacity, 1));
}
.bg-platform-avatar-11{
  --tw-bg-opacity: 1;
  background-color: rgb(9 163 163 / var(--tw-bg-opacity, 1));
}
.bg-platform-avatar-12{
  --tw-bg-opacity: 1;
  background-color: rgb(9 171 171 / var(--tw-bg-opacity, 1));
}
.bg-platform-avatar-13{
  --tw-bg-opacity: 1;
  background-color: rgb(8 180 180 / var(--tw-bg-opacity, 1));
}
.bg-platform-avatar-14{
  --tw-bg-opacity: 1;
  background-color: rgb(7 188 188 / var(--tw-bg-opacity, 1));
}
.bg-platform-avatar-15{
  --tw-bg-opacity: 1;
  background-color: rgb(6 196 196 / var(--tw-bg-opacity, 1));
}
.bg-platform-avatar-16{
  --tw-bg-opacity: 1;
  background-color: rgb(38 206 206 / var(--tw-bg-opacity, 1));
}
.bg-platform-avatar-2{
  --tw-bg-opacity: 1;
  background-color: rgb(104 35 183 / var(--tw-bg-opacity, 1));
}
.bg-platform-avatar-3{
  --tw-bg-opacity: 1;
  background-color: rgb(110 36 195 / var(--tw-bg-opacity, 1));
}
.bg-platform-avatar-4{
  --tw-bg-opacity: 1;
  background-color: rgb(118 38 211 / var(--tw-bg-opacity, 1));
}
.bg-platform-avatar-5{
  --tw-bg-opacity: 1;
  background-color: rgb(129 48 223 / var(--tw-bg-opacity, 1));
}
.bg-platform-avatar-6{
  --tw-bg-opacity: 1;
  background-color: rgb(145 74 227 / var(--tw-bg-opacity, 1));
}
.bg-platform-avatar-7{
  --tw-bg-opacity: 1;
  background-color: rgb(166 109 232 / var(--tw-bg-opacity, 1));
}
.bg-platform-avatar-8{
  --tw-bg-opacity: 1;
  background-color: rgb(184 139 237 / var(--tw-bg-opacity, 1));
}
.bg-platform-avatar-9{
  --tw-bg-opacity: 1;
  background-color: rgb(11 143 143 / var(--tw-bg-opacity, 1));
}
.bg-platform-extra-amber-700{
  --tw-bg-opacity: 1;
  background-color: rgb(174 84 13 / var(--tw-bg-opacity, 1));
}
.bg-platform-extra-cyan-dark{
  --tw-bg-opacity: 1;
  background-color: rgb(0 131 143 / var(--tw-bg-opacity, 1));
}
.bg-platform-extra-green{
  --tw-bg-opacity: 1;
  background-color: rgb(8 163 96 / var(--tw-bg-opacity, 1));
}
.bg-platform-extra-green-light{
  --tw-bg-opacity: 1;
  background-color: rgb(244 255 244 / var(--tw-bg-opacity, 1));
}
.bg-platform-extra-indigo-600{
  --tw-bg-opacity: 1;
  background-color: rgb(76 58 237 / var(--tw-bg-opacity, 1));
}
.bg-platform-extra-pink-700{
  --tw-bg-opacity: 1;
  background-color: rgb(182 26 92 / var(--tw-bg-opacity, 1));
}
.bg-platform-extra-purple-heavy{
  --tw-bg-opacity: 1;
  background-color: rgb(90 33 155 / var(--tw-bg-opacity, 1));
}
.bg-platform-extra-red-dark{
  --tw-bg-opacity: 1;
  background-color: rgb(212 36 34 / var(--tw-bg-opacity, 1));
}
.bg-platform-extra-red-light{
  --tw-bg-opacity: 1;
  background-color: rgb(255 240 237 / var(--tw-bg-opacity, 1));
}
.bg-platform-neutral-100{
  --tw-bg-opacity: 1;
  background-color: rgb(240 242 245 / var(--tw-bg-opacity, 1));
}
.bg-platform-neutral-200{
  --tw-bg-opacity: 1;
  background-color: rgb(223 230 240 / var(--tw-bg-opacity, 1));
}
.bg-platform-neutral-300{
  --tw-bg-opacity: 1;
  background-color: rgb(206 218 237 / var(--tw-bg-opacity, 1));
}
.bg-platform-neutral-50{
  --tw-bg-opacity: 1;
  background-color: rgb(247 249 252 / var(--tw-bg-opacity, 1));
}
.bg-platform-neutral-600{
  --tw-bg-opacity: 1;
  background-color: rgb(77 86 102 / var(--tw-bg-opacity, 1));
}
.bg-platform-neutral-700{
  --tw-bg-opacity: 1;
  background-color: rgb(55 62 73 / var(--tw-bg-opacity, 1));
}
.bg-platform-neutral-800\/50{
  background-color: rgb(33 37 43 / 0.5);
}
.bg-platform-neutral-900{
  --tw-bg-opacity: 1;
  background-color: rgb(22 22 22 / var(--tw-bg-opacity, 1));
}
.bg-platform-neutral-white{
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1));
}
.bg-platform-primary{
  --tw-bg-opacity: 1;
  background-color: rgb(7 53 114 / var(--tw-bg-opacity, 1));
}
.bg-platform-primary-100{
  --tw-bg-opacity: 1;
  background-color: rgb(237 246 255 / var(--tw-bg-opacity, 1));
}
.bg-platform-primary-200{
  --tw-bg-opacity: 1;
  background-color: rgb(219 238 255 / var(--tw-bg-opacity, 1));
}
.bg-platform-primary-50{
  --tw-bg-opacity: 1;
  background-color: rgb(245 250 255 / var(--tw-bg-opacity, 1));
}
.bg-platform-primary-500{
  --tw-bg-opacity: 1;
  background-color: rgb(27 112 240 / var(--tw-bg-opacity, 1));
}
.bg-platform-primary-600{
  --tw-bg-opacity: 1;
  background-color: rgb(2 78 193 / var(--tw-bg-opacity, 1));
}
.bg-platform-primary-700{
  --tw-bg-opacity: 1;
  background-color: rgb(13 66 141 / var(--tw-bg-opacity, 1));
}
.bg-platform-primary-800{
  --tw-bg-opacity: 1;
  background-color: rgb(7 53 114 / var(--tw-bg-opacity, 1));
}
.bg-platform-primary\/50{
  background-color: rgb(7 53 114 / 0.5);
}
.bg-platform-secondary-500{
  --tw-bg-opacity: 1;
  background-color: rgb(255 190 26 / var(--tw-bg-opacity, 1));
}
.bg-platform-system-danger{
  --tw-bg-opacity: 1;
  background-color: rgb(244 77 68 / var(--tw-bg-opacity, 1));
}
.bg-platform-system-danger-50{
  --tw-bg-opacity: 1;
  background-color: rgb(255 239 238 / var(--tw-bg-opacity, 1));
}
.bg-platform-system-info-50{
  --tw-bg-opacity: 1;
  background-color: rgb(245 250 255 / var(--tw-bg-opacity, 1));
}
.bg-platform-system-success{
  --tw-bg-opacity: 1;
  background-color: rgb(73 177 73 / var(--tw-bg-opacity, 1));
}
.bg-platform-system-success-50{
  --tw-bg-opacity: 1;
  background-color: rgb(222 242 203 / var(--tw-bg-opacity, 1));
}
.bg-platform-system-warning{
  --tw-bg-opacity: 1;
  background-color: rgb(255 190 26 / var(--tw-bg-opacity, 1));
}
.bg-platform-system-warning-50{
  --tw-bg-opacity: 1;
  background-color: rgb(255 248 229 / var(--tw-bg-opacity, 1));
}
.bg-red-lighter\/20{
  background-color: rgb(241 108 108 / 0.2);
}
.bg-transparent{
  background-color: transparent;
}
.bg-white{
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1));
}
.bg-white\/80{
  background-color: rgb(255 255 255 / 0.8);
}
.bg-opacity-60{
  --tw-bg-opacity: 0.6;
}
.bg-\[repeating-linear-gradient\(-55deg\2c _\#1B70F0_1px\2c _\#579DF7_2px\2c _\#579DF7_11px\2c _\#1B70F0_12px\2c _\#1B70F0_20px\)\]{
  background-image: repeating-linear-gradient(-55deg, #1B70F0 1px, #579DF7 2px, #579DF7 11px, #1B70F0 12px, #1B70F0 20px);
}
.bg-\[url\(\'\/assets\/images\/helium-finance-chart-empty\.png\'\)\]{
  background-image: url('/assets/images/helium-finance-chart-empty-a2674a203d75540b5696b8f5dfa88e9d.png');
}
.bg-\[url\(\'\/assets\/images\/helium-tab-contacts\.png\'\)\]{
  background-image: url('/assets/images/helium-tab-contacts.png');
}
.bg-\[url\(\'\/assets\/images\/helium-tab-finance\.png\'\)\]{
  background-image: url('/assets/images/helium-tab-finance.png');
}
.bg-\[url\(\'\/assets\/images\/helium-tab-news\.png\'\)\]{
  background-image: url('/assets/images/helium-tab-news.png');
}
.bg-gradient-to-b{
  background-image: linear-gradient(to bottom, var(--tw-gradient-stops));
}
.from-\[\#EEF7FF\]{
  --tw-gradient-from: #EEF7FF var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(238 247 255 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-platform-primary-700{
  --tw-gradient-from: #0D428D var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(13 66 141 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-transparent{
  --tw-gradient-from: transparent var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(0 0 0 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-white{
  --tw-gradient-from: #ffffff var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(255 255 255 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-80\%{
  --tw-gradient-from-position: 80%;
}
.to-platform-primary-500{
  --tw-gradient-to: #1B70F0 var(--tw-gradient-to-position);
}
.to-white{
  --tw-gradient-to: #ffffff var(--tw-gradient-to-position);
}
.to-100\%{
  --tw-gradient-to-position: 100%;
}
.bg-\[length\:281px_165px\]{
  background-size: 281px 165px;
}
.bg-\[length\:90\%\]{
  background-size: 90%;
}
.bg-contain{
  background-size: contain;
}
.bg-cover{
  background-size: cover;
}
.bg-center{
  background-position: center;
}
.bg-no-repeat{
  background-repeat: no-repeat;
}
.fill-current{
  fill: currentColor;
}
.fill-grey-dark{
  fill: #8c9eab;
}
.fill-grey-light-blueish{
  fill: #62718a;
}
.fill-platform-neutral-100{
  fill: #F0F2F5;
}
.fill-platform-neutral-300{
  fill: #CEDAED;
}
.fill-platform-neutral-600{
  fill: #4D5666;
}
.fill-platform-primary-600{
  fill: #024EC1;
}
.stroke-current{
  stroke: currentColor;
}
.\!p-0{
  padding: 0px !important;
}
.\!p-2{
  padding: 0.5rem !important;
}
.\!p-6{
  padding: 1.5rem !important;
}
.p-0{
  padding: 0px;
}
.p-1{
  padding: 0.25rem;
}
.p-1\.5{
  padding: 0.375rem;
}
.p-12{
  padding: 3rem;
}
.p-14{
  padding: 3.5rem;
}
.p-2{
  padding: 0.5rem;
}
.p-2\.5{
  padding: 0.625rem;
}
.p-3{
  padding: 0.75rem;
}
.p-4{
  padding: 1rem;
}
.p-5{
  padding: 1.25rem;
}
.p-6{
  padding: 1.5rem;
}
.p-7{
  padding: 1.75rem;
}
.p-8{
  padding: 2rem;
}
.p-\[16px\]{
  padding: 16px;
}
.p-\[20px\]{
  padding: 20px;
}
.p-\[3px\]{
  padding: 3px;
}
.p-\[7px\]{
  padding: 7px;
}
.p-double{
  padding: 20px;
}
.p-one-and-half{
  padding: 15px;
}
.p-single{
  padding: 10px;
}
.p-triple{
  padding: 30px;
}
.\!px-0{
  padding-left: 0px !important;
  padding-right: 0px !important;
}
.\!px-2{
  padding-left: 0.5rem !important;
  padding-right: 0.5rem !important;
}
.\!px-4{
  padding-left: 1rem !important;
  padding-right: 1rem !important;
}
.\!px-5{
  padding-left: 1.25rem !important;
  padding-right: 1.25rem !important;
}
.\!px-6{
  padding-left: 1.5rem !important;
  padding-right: 1.5rem !important;
}
.\!py-0{
  padding-top: 0px !important;
  padding-bottom: 0px !important;
}
.\!py-2{
  padding-top: 0.5rem !important;
  padding-bottom: 0.5rem !important;
}
.\!py-2\.5{
  padding-top: 0.625rem !important;
  padding-bottom: 0.625rem !important;
}
.\!py-4{
  padding-top: 1rem !important;
  padding-bottom: 1rem !important;
}
.px-0{
  padding-left: 0px;
  padding-right: 0px;
}
.px-1{
  padding-left: 0.25rem;
  padding-right: 0.25rem;
}
.px-1\.5{
  padding-left: 0.375rem;
  padding-right: 0.375rem;
}
.px-12{
  padding-left: 3rem;
  padding-right: 3rem;
}
.px-2{
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}
.px-2\.5{
  padding-left: 0.625rem;
  padding-right: 0.625rem;
}
.px-24{
  padding-left: 6rem;
  padding-right: 6rem;
}
.px-3{
  padding-left: 0.75rem;
  padding-right: 0.75rem;
}
.px-3\.5{
  padding-left: 0.875rem;
  padding-right: 0.875rem;
}
.px-4{
  padding-left: 1rem;
  padding-right: 1rem;
}
.px-5{
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}
.px-6{
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
.px-7{
  padding-left: 1.75rem;
  padding-right: 1.75rem;
}
.px-8{
  padding-left: 2rem;
  padding-right: 2rem;
}
.px-9{
  padding-left: 2.25rem;
  padding-right: 2.25rem;
}
.px-\[23px\]{
  padding-left: 23px;
  padding-right: 23px;
}
.px-\[4px\]{
  padding-left: 4px;
  padding-right: 4px;
}
.px-\[5px\]{
  padding-left: 5px;
  padding-right: 5px;
}
.px-single{
  padding-left: 10px;
  padding-right: 10px;
}
.px-triple{
  padding-left: 30px;
  padding-right: 30px;
}
.py-0\.5{
  padding-top: 0.125rem;
  padding-bottom: 0.125rem;
}
.py-1{
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
}
.py-10{
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}
.py-12{
  padding-top: 3rem;
  padding-bottom: 3rem;
}
.py-16{
  padding-top: 4rem;
  padding-bottom: 4rem;
}
.py-2{
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
.py-2\.5{
  padding-top: 0.625rem;
  padding-bottom: 0.625rem;
}
.py-20{
  padding-top: 5rem;
  padding-bottom: 5rem;
}
.py-24{
  padding-top: 6rem;
  padding-bottom: 6rem;
}
.py-3{
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}
.py-4{
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.py-5{
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
}
.py-6{
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}
.py-7{
  padding-top: 1.75rem;
  padding-bottom: 1.75rem;
}
.py-8{
  padding-top: 2rem;
  padding-bottom: 2rem;
}
.py-\[12px\]{
  padding-top: 12px;
  padding-bottom: 12px;
}
.py-\[6px\]{
  padding-top: 6px;
  padding-bottom: 6px;
}
.py-double{
  padding-top: 20px;
  padding-bottom: 20px;
}
.py-half{
  padding-top: 5px;
  padding-bottom: 5px;
}
.py-single{
  padding-top: 10px;
  padding-bottom: 10px;
}
.\!pb-0{
  padding-bottom: 0px !important;
}
.\!pb-10{
  padding-bottom: 2.5rem !important;
}
.\!pb-4{
  padding-bottom: 1rem !important;
}
.\!pl-0{
  padding-left: 0px !important;
}
.\!pl-10{
  padding-left: 2.5rem !important;
}
.\!pl-\[34px\]{
  padding-left: 34px !important;
}
.\!pr-6{
  padding-right: 1.5rem !important;
}
.\!pt-4{
  padding-top: 1rem !important;
}
.\!pt-8{
  padding-top: 2rem !important;
}
.pb-0{
  padding-bottom: 0px;
}
.pb-1{
  padding-bottom: 0.25rem;
}
.pb-10{
  padding-bottom: 2.5rem;
}
.pb-2{
  padding-bottom: 0.5rem;
}
.pb-20{
  padding-bottom: 5rem;
}
.pb-3{
  padding-bottom: 0.75rem;
}
.pb-4{
  padding-bottom: 1rem;
}
.pb-5{
  padding-bottom: 1.25rem;
}
.pb-6{
  padding-bottom: 1.5rem;
}
.pb-8{
  padding-bottom: 2rem;
}
.pb-\[60px\]{
  padding-bottom: 60px;
}
.pb-half{
  padding-bottom: 5px;
}
.pl-0{
  padding-left: 0px;
}
.pl-0\.5{
  padding-left: 0.125rem;
}
.pl-1{
  padding-left: 0.25rem;
}
.pl-1\.5{
  padding-left: 0.375rem;
}
.pl-10{
  padding-left: 2.5rem;
}
.pl-12{
  padding-left: 3rem;
}
.pl-2{
  padding-left: 0.5rem;
}
.pl-2\.5{
  padding-left: 0.625rem;
}
.pl-3{
  padding-left: 0.75rem;
}
.pl-4{
  padding-left: 1rem;
}
.pl-5{
  padding-left: 1.25rem;
}
.pl-6{
  padding-left: 1.5rem;
}
.pl-7{
  padding-left: 1.75rem;
}
.pl-8{
  padding-left: 2rem;
}
.pl-\[35px\]{
  padding-left: 35px;
}
.pl-double-and-half{
  padding-left: 25px;
}
.pl-half{
  padding-left: 5px;
}
.pl-single{
  padding-left: 10px;
}
.pr-0{
  padding-right: 0px;
}
.pr-10{
  padding-right: 2.5rem;
}
.pr-12{
  padding-right: 3rem;
}
.pr-2{
  padding-right: 0.5rem;
}
.pr-3{
  padding-right: 0.75rem;
}
.pr-4{
  padding-right: 1rem;
}
.pr-5{
  padding-right: 1.25rem;
}
.pr-6{
  padding-right: 1.5rem;
}
.pr-9{
  padding-right: 2.25rem;
}
.pt-0{
  padding-top: 0px;
}
.pt-1\.5{
  padding-top: 0.375rem;
}
.pt-10{
  padding-top: 2.5rem;
}
.pt-12{
  padding-top: 3rem;
}
.pt-2{
  padding-top: 0.5rem;
}
.pt-24{
  padding-top: 6rem;
}
.pt-4{
  padding-top: 1rem;
}
.pt-5{
  padding-top: 1.25rem;
}
.pt-6{
  padding-top: 1.5rem;
}
.pt-8{
  padding-top: 2rem;
}
.pt-\[2px\]{
  padding-top: 2px;
}
.pt-\[52px\]{
  padding-top: 52px;
}
.pt-\[6px\]{
  padding-top: 6px;
}
.pt-double{
  padding-top: 20px;
}
.text-left{
  text-align: left;
}
.text-center{
  text-align: center;
}
.text-right{
  text-align: right;
}
.align-baseline{
  vertical-align: baseline;
}
.align-top{
  vertical-align: top;
}
.align-middle{
  vertical-align: middle;
}
.align-super{
  vertical-align: super;
}
.font-platform-body{
  font-family: Inter, sans-serif;
}
.font-platform-header{
  font-family: Soehne, sans-serif;
}
.\!text-\[0\.45rem\]{
  font-size: 0.45rem !important;
}
.\!text-xs{
  font-size: 0.75rem !important;
  line-height: 1rem !important;
}
.text-2xl{
  font-size: 1.5rem;
  line-height: 2rem;
}
.text-3xl{
  font-size: 1.875rem;
  line-height: 2.25rem;
}
.text-4xl{
  font-size: 2.25rem;
  line-height: 2.5rem;
}
.text-6xl{
  font-size: 3.75rem;
  line-height: 1;
}
.text-\[0\.65rem\]{
  font-size: 0.65rem;
}
.text-\[0\.8em\]{
  font-size: 0.8em;
}
.text-\[12px\]{
  font-size: 12px;
}
.text-\[23px\]{
  font-size: 23px;
}
.text-\[24px\]{
  font-size: 24px;
}
.text-\[32px\]{
  font-size: 32px;
}
.text-\[36px\]{
  font-size: 36px;
}
.text-\[42px\]{
  font-size: 42px;
}
.text-\[8px\]{
  font-size: 8px;
}
.text-base{
  font-size: 16px;
}
.text-font-l-1{
  font-size: 21px;
}
.text-font-l-2{
  font-size: 24px;
}
.text-font-ml{
  font-size: 18px;
}
.text-font-s{
  font-size: 12px;
}
.text-font-s-1{
  font-size: 13px;
}
.text-font-sm{
  font-size: 14px;
}
.text-font-xs{
  font-size: 11px;
}
.text-lg{
  font-size: 1.125rem;
  line-height: 1.75rem;
}
.text-sm{
  font-size: 0.875rem;
  line-height: 1.25rem;
}
.text-sm\/4{
  font-size: 0.875rem;
  line-height: 1rem;
}
.text-xl{
  font-size: 1.25rem;
  line-height: 1.75rem;
}
.text-xs{
  font-size: 0.75rem;
  line-height: 1rem;
}
.text-xs\/4{
  font-size: 0.75rem;
  line-height: 1rem;
}
.text-xxs{
  font-size: 0.625rem;
  line-height: 0.75rem;
}
.\!font-bold{
  font-weight: 700 !important;
}
.font-bold{
  font-weight: 700;
}
.font-extrabold{
  font-weight: 800;
}
.font-medium{
  font-weight: 500;
}
.font-normal{
  font-weight: 400;
}
.font-semibold{
  font-weight: 600;
}
.uppercase{
  text-transform: uppercase;
}
.lowercase{
  text-transform: lowercase;
}
.capitalize{
  text-transform: capitalize;
}
.italic{
  font-style: italic;
}
.tabular-nums{
  --tw-numeric-spacing: tabular-nums;
  font-variant-numeric: var(--tw-ordinal) var(--tw-slashed-zero) var(--tw-numeric-figure) var(--tw-numeric-spacing) var(--tw-numeric-fraction);
}
.leading-3{
  line-height: .75rem;
}
.leading-4{
  line-height: 1rem;
}
.leading-5{
  line-height: 1.25rem;
}
.leading-6{
  line-height: 1.5rem;
}
.leading-\[0\.455rem\]{
  line-height: 0.455rem;
}
.leading-\[20px\]{
  line-height: 20px;
}
.leading-\[52px\]{
  line-height: 52px;
}
.leading-none{
  line-height: 1;
}
.leading-relaxed{
  line-height: 1.625;
}
.leading-snug{
  line-height: 1.375;
}
.leading-tight{
  line-height: 1.25;
}
.tracking-wider{
  letter-spacing: 0.05em;
}
.tracking-widest{
  letter-spacing: 0.1em;
}
.\!text-blue{
  --tw-text-opacity: 1 !important;
  color: rgb(7 53 114 / var(--tw-text-opacity, 1)) !important;
}
.\!text-platform-neutral{
  --tw-text-opacity: 1 !important;
  color: rgb(100 111 131 / var(--tw-text-opacity, 1)) !important;
}
.\!text-platform-neutral-100{
  --tw-text-opacity: 1 !important;
  color: rgb(240 242 245 / var(--tw-text-opacity, 1)) !important;
}
.\!text-platform-neutral-400{
  --tw-text-opacity: 1 !important;
  color: rgb(155 166 185 / var(--tw-text-opacity, 1)) !important;
}
.\!text-platform-neutral-700{
  --tw-text-opacity: 1 !important;
  color: rgb(55 62 73 / var(--tw-text-opacity, 1)) !important;
}
.\!text-platform-neutral-900{
  --tw-text-opacity: 1 !important;
  color: rgb(22 22 22 / var(--tw-text-opacity, 1)) !important;
}
.\!text-platform-neutral-white{
  --tw-text-opacity: 1 !important;
  color: rgb(255 255 255 / var(--tw-text-opacity, 1)) !important;
}
.\!text-platform-primary-600{
  --tw-text-opacity: 1 !important;
  color: rgb(2 78 193 / var(--tw-text-opacity, 1)) !important;
}
.\!text-platform-system-danger{
  --tw-text-opacity: 1 !important;
  color: rgb(244 77 68 / var(--tw-text-opacity, 1)) !important;
}
.\!text-platform-system-success{
  --tw-text-opacity: 1 !important;
  color: rgb(73 177 73 / var(--tw-text-opacity, 1)) !important;
}
.\!text-red{
  --tw-text-opacity: 1 !important;
  color: rgb(239 85 85 / var(--tw-text-opacity, 1)) !important;
}
.\!text-white{
  --tw-text-opacity: 1 !important;
  color: rgb(255 255 255 / var(--tw-text-opacity, 1)) !important;
}
.text-\[\#282d34\]{
  --tw-text-opacity: 1;
  color: rgb(40 45 52 / var(--tw-text-opacity, 1));
}
.text-\[\#ffc940\]{
  --tw-text-opacity: 1;
  color: rgb(255 201 64 / var(--tw-text-opacity, 1));
}
.text-black{
  --tw-text-opacity: 1;
  color: rgb(10 10 10 / var(--tw-text-opacity, 1));
}
.text-blue{
  --tw-text-opacity: 1;
  color: rgb(7 53 114 / var(--tw-text-opacity, 1));
}
.text-blue-dark{
  --tw-text-opacity: 1;
  color: rgb(15 33 62 / var(--tw-text-opacity, 1));
}
.text-blue-hover{
  --tw-text-opacity: 1;
  color: rgb(15 33 62 / var(--tw-text-opacity, 1));
}
.text-danger{
  --tw-text-opacity: 1;
  color: rgb(218 89 91 / var(--tw-text-opacity, 1));
}
.text-green-dark{
  --tw-text-opacity: 1;
  color: rgb(98 196 98 / var(--tw-text-opacity, 1));
}
.text-grey-dark{
  --tw-text-opacity: 1;
  color: rgb(140 158 171 / var(--tw-text-opacity, 1));
}
.text-grey-dark-1{
  --tw-text-opacity: 1;
  color: rgb(183 183 183 / var(--tw-text-opacity, 1));
}
.text-grey-dark-3{
  --tw-text-opacity: 1;
  color: rgb(66 62 62 / var(--tw-text-opacity, 1));
}
.text-grey-light-blueish{
  --tw-text-opacity: 1;
  color: rgb(98 113 138 / var(--tw-text-opacity, 1));
}
.text-grey-super-dark{
  --tw-text-opacity: 1;
  color: rgb(51 60 68 / var(--tw-text-opacity, 1));
}
.text-inherit{
  color: inherit;
}
.text-muted{
  --tw-text-opacity: 1;
  color: rgb(183 183 183 / var(--tw-text-opacity, 1));
}
.text-orange{
  --tw-text-opacity: 1;
  color: rgb(255 163 99 / var(--tw-text-opacity, 1));
}
.text-platform-extra-green{
  --tw-text-opacity: 1;
  color: rgb(8 163 96 / var(--tw-text-opacity, 1));
}
.text-platform-extra-purple{
  --tw-text-opacity: 1;
  color: rgb(123 38 221 / var(--tw-text-opacity, 1));
}
.text-platform-extra-red{
  --tw-text-opacity: 1;
  color: rgb(240 136 130 / var(--tw-text-opacity, 1));
}
.text-platform-neutral{
  --tw-text-opacity: 1;
  color: rgb(100 111 131 / var(--tw-text-opacity, 1));
}
.text-platform-neutral-200{
  --tw-text-opacity: 1;
  color: rgb(223 230 240 / var(--tw-text-opacity, 1));
}
.text-platform-neutral-300{
  --tw-text-opacity: 1;
  color: rgb(206 218 237 / var(--tw-text-opacity, 1));
}
.text-platform-neutral-400{
  --tw-text-opacity: 1;
  color: rgb(155 166 185 / var(--tw-text-opacity, 1));
}
.text-platform-neutral-500{
  --tw-text-opacity: 1;
  color: rgb(100 111 131 / var(--tw-text-opacity, 1));
}
.text-platform-neutral-600{
  --tw-text-opacity: 1;
  color: rgb(77 86 102 / var(--tw-text-opacity, 1));
}
.text-platform-neutral-600\/60{
  color: rgb(77 86 102 / 0.6);
}
.text-platform-neutral-700{
  --tw-text-opacity: 1;
  color: rgb(55 62 73 / var(--tw-text-opacity, 1));
}
.text-platform-neutral-800{
  --tw-text-opacity: 1;
  color: rgb(33 37 43 / var(--tw-text-opacity, 1));
}
.text-platform-neutral-900{
  --tw-text-opacity: 1;
  color: rgb(22 22 22 / var(--tw-text-opacity, 1));
}
.text-platform-neutral-white{
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity, 1));
}
.text-platform-primary{
  --tw-text-opacity: 1;
  color: rgb(7 53 114 / var(--tw-text-opacity, 1));
}
.text-platform-primary-200{
  --tw-text-opacity: 1;
  color: rgb(219 238 255 / var(--tw-text-opacity, 1));
}
.text-platform-primary-300{
  --tw-text-opacity: 1;
  color: rgb(161 212 255 / var(--tw-text-opacity, 1));
}
.text-platform-primary-400{
  --tw-text-opacity: 1;
  color: rgb(87 157 247 / var(--tw-text-opacity, 1));
}
.text-platform-primary-500{
  --tw-text-opacity: 1;
  color: rgb(27 112 240 / var(--tw-text-opacity, 1));
}
.text-platform-primary-600{
  --tw-text-opacity: 1;
  color: rgb(2 78 193 / var(--tw-text-opacity, 1));
}
.text-platform-primary-700{
  --tw-text-opacity: 1;
  color: rgb(13 66 141 / var(--tw-text-opacity, 1));
}
.text-platform-secondary{
  --tw-text-opacity: 1;
  color: rgb(255 190 26 / var(--tw-text-opacity, 1));
}
.text-platform-secondary-500{
  --tw-text-opacity: 1;
  color: rgb(255 190 26 / var(--tw-text-opacity, 1));
}
.text-platform-system-danger{
  --tw-text-opacity: 1;
  color: rgb(244 77 68 / var(--tw-text-opacity, 1));
}
.text-platform-system-danger-500{
  --tw-text-opacity: 1;
  color: rgb(244 77 68 / var(--tw-text-opacity, 1));
}
.text-platform-system-info{
  --tw-text-opacity: 1;
  color: rgb(27 112 240 / var(--tw-text-opacity, 1));
}
.text-platform-system-success{
  --tw-text-opacity: 1;
  color: rgb(73 177 73 / var(--tw-text-opacity, 1));
}
.text-platform-system-success-500{
  --tw-text-opacity: 1;
  color: rgb(73 177 73 / var(--tw-text-opacity, 1));
}
.text-platform-system-warning{
  --tw-text-opacity: 1;
  color: rgb(255 190 26 / var(--tw-text-opacity, 1));
}
.text-platform-system-warning-500{
  --tw-text-opacity: 1;
  color: rgb(255 190 26 / var(--tw-text-opacity, 1));
}
.text-red{
  --tw-text-opacity: 1;
  color: rgb(239 85 85 / var(--tw-text-opacity, 1));
}
.text-red-lighter{
  --tw-text-opacity: 1;
  color: rgb(241 108 108 / var(--tw-text-opacity, 1));
}
.text-transparent{
  color: transparent;
}
.text-utility{
  --tw-text-opacity: 1;
  color: rgb(89 105 118 / var(--tw-text-opacity, 1));
}
.text-white{
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity, 1));
}
.text-yellow{
  --tw-text-opacity: 1;
  color: rgb(255 183 0 / var(--tw-text-opacity, 1));
}
.underline{
  text-decoration-line: underline;
}
.line-through{
  text-decoration-line: line-through;
}
.\!no-underline{
  text-decoration-line: none !important;
}
.no-underline{
  text-decoration-line: none;
}
.\!antialiased{
  -webkit-font-smoothing: antialiased !important;
  -moz-osx-font-smoothing: grayscale !important;
}
.\!opacity-100{
  opacity: 1 !important;
}
.\!opacity-50{
  opacity: 0.5 !important;
}
.opacity-0{
  opacity: 0;
}
.opacity-100{
  opacity: 1;
}
.opacity-20{
  opacity: 0.2;
}
.opacity-30{
  opacity: 0.3;
}
.opacity-40{
  opacity: 0.4;
}
.opacity-50{
  opacity: 0.5;
}
.opacity-60{
  opacity: 0.6;
}
.opacity-70{
  opacity: 0.7;
}
.\!shadow-lg{
  --tw-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1) !important;
  --tw-shadow-colored: 0 10px 15px -3px var(--tw-shadow-color), 0 4px 6px -4px var(--tw-shadow-color) !important;
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important;
}
.shadow{
  --tw-shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
  --tw-shadow-colored: 0 1px 3px 0 var(--tw-shadow-color), 0 1px 2px -1px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.shadow-\[inset_0_-7px_12px_-7px_rgba\(0\2c 0\2c 0\2c 0\.2\)\]{
  --tw-shadow: inset 0 -7px 12px -7px rgba(0,0,0,0.2);
  --tw-shadow-colored: inset 0 -7px 12px -7px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.shadow-\[inset_0_7px_12px_-7px_rgba\(0\2c 0\2c 0\2c 0\.2\)\]{
  --tw-shadow: inset 0 7px 12px -7px rgba(0,0,0,0.2);
  --tw-shadow-colored: inset 0 7px 12px -7px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.shadow-\[inset_rgb\(0\2c 0\2c 0\2c 0\.05\)_25px_0px_10px_-25px\]{
  --tw-shadow: inset rgb(0,0,0,0.05) 25px 0px 10px -25px;
  --tw-shadow-colored: inset 25px 0px 10px -25px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.shadow-lg{
  --tw-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --tw-shadow-colored: 0 10px 15px -3px var(--tw-shadow-color), 0 4px 6px -4px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.shadow-md{
  --tw-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --tw-shadow-colored: 0 4px 6px -1px var(--tw-shadow-color), 0 2px 4px -2px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.shadow-none{
  --tw-shadow: 0 0 #0000;
  --tw-shadow-colored: 0 0 #0000;
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.shadow-table-horizontal-scroll-right{
  --tw-shadow: inset -25px 0 10px -20px rgb(0,0,0,0.1);
  --tw-shadow-colored: inset -25px 0 10px -20px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.shadow-xl{
  --tw-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
  --tw-shadow-colored: 0 20px 25px -5px var(--tw-shadow-color), 0 8px 10px -6px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.shadow-\[\#1B70F025\]{
  --tw-shadow-color: #1B70F025;
  --tw-shadow: var(--tw-shadow-colored);
}
.outline-none{
  outline: 2px solid transparent;
  outline-offset: 2px;
}
.outline{
  outline-style: solid;
}
.outline-0{
  outline-width: 0px;
}
.blur{
  --tw-blur: blur(8px);
  filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
}
.blur-\[2px\]{
  --tw-blur: blur(2px);
  filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
}
.drop-shadow-lg{
  --tw-drop-shadow: drop-shadow(0 10px 8px rgb(0 0 0 / 0.04)) drop-shadow(0 4px 3px rgb(0 0 0 / 0.1));
  filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
}
.grayscale{
  --tw-grayscale: grayscale(100%);
  filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
}
.\!filter{
  filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow) !important;
}
.filter{
  filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
}
.\!transition{
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, -webkit-backdrop-filter !important;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter !important;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter, -webkit-backdrop-filter !important;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1) !important;
  transition-duration: 150ms !important;
}
.transition{
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, -webkit-backdrop-filter;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter, -webkit-backdrop-filter;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.transition-\[height\2c width\]{
  transition-property: height,width;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.transition-\[right\2c visibility\]{
  transition-property: right,visibility;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.transition-\[transform\2c visibility\]{
  transition-property: transform,visibility;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.transition-\[transform\]{
  transition-property: transform;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.transition-\[width\]{
  transition-property: width;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.transition-all{
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.transition-colors{
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.transition-opacity{
  transition-property: opacity;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.transition-shadow{
  transition-property: box-shadow;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.transition-transform{
  transition-property: transform;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.transition-width{
  transition-property: width;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.delay-0{
  transition-delay: 0s;
}
.duration-100{
  transition-duration: 100ms;
}
.duration-150{
  transition-duration: 150ms;
}
.duration-200{
  transition-duration: 200ms;
}
.duration-300{
  transition-duration: 300ms;
}
.duration-500{
  transition-duration: 500ms;
}
.duration-75{
  transition-duration: 75ms;
}
.duration-\[250ms\]{
  transition-duration: 250ms;
}
.ease-\[cubic-bezier\(0\.77\2c -0\.01\2c 1\2c 1\)\]{
  transition-timing-function: cubic-bezier(0.77,-0.01,1,1);
}
.ease-in{
  transition-timing-function: cubic-bezier(0.4, 0, 1, 1);
}
.ease-in-out{
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}
.ease-out{
  transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
}
.will-change-transform{
  will-change: transform;
}
.animate-bounce{
  transform-origin: center bottom;
}
.animate-infinite{
  animation-iteration-count: infinite;
}
.animate-duration-\[0\.2s\]{
  animation-duration: 0.2s;
}
.animate-duration-\[2s\]{
  animation-duration: 2s;
}
.animate-ease-in{
  animation-timing-function: cubic-bezier(.42,0,1,1);
}
.animate-delay-1000{
  animation-delay: 1000ms;
}
.animate-delay-500{
  animation-delay: 500ms;
}
.animate-repeat-1{
  animation-iteration-count: 1;
}
.\@container{
  container-type: inline-size;
}
.\@container\/organization-details{
  container-type: inline-size;
  container-name: organization-details;
}
.u-shadow-scroll {
    background: linear-gradient(white 30%, rgba(255, 255, 255, 0)), linear-gradient(rgba(255, 255, 255, 0), white 70%) 0 100%, radial-gradient(farthest-side at 50% 0, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0)), radial-gradient(farthest-side at 50% 100%, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0)) 0 100%;
    /* Opera doesn't support this in the shorthand */
    background-attachment: local, local, scroll, scroll;
    background-color: white;
    background-repeat: no-repeat;
    background-size: 100% 40px, 100% 40px, 100% 14px, 100% 14px;
  }
.first-letter\:uppercase::first-letter{
  text-transform: uppercase;
}
.placeholder\:text-platform-neutral-400::-moz-placeholder{
  --tw-text-opacity: 1;
  color: rgb(155 166 185 / var(--tw-text-opacity, 1));
}
.placeholder\:text-platform-neutral-400::placeholder{
  --tw-text-opacity: 1;
  color: rgb(155 166 185 / var(--tw-text-opacity, 1));
}
.backdrop\:bg-black::backdrop{
  --tw-bg-opacity: 1;
  background-color: rgb(10 10 10 / var(--tw-bg-opacity, 1));
}
.backdrop\:opacity-30::backdrop{
  opacity: 0.3;
}
.before\:absolute::before{
  content: var(--tw-content);
  position: absolute;
}
.before\:bottom-0::before{
  content: var(--tw-content);
  bottom: 0px;
}
.before\:left-0::before{
  content: var(--tw-content);
  left: 0px;
}
.before\:top-0::before{
  content: var(--tw-content);
  top: 0px;
}
.before\:ml-\[-6px\]::before{
  content: var(--tw-content);
  margin-left: -6px;
}
.before\:block::before{
  content: var(--tw-content);
  display: block;
}
.before\:hidden::before{
  content: var(--tw-content);
  display: none;
}
.before\:h-8::before{
  content: var(--tw-content);
  height: 2rem;
}
.before\:\!w-1::before{
  content: var(--tw-content);
  width: 0.25rem !important;
}
.before\:w-0::before{
  content: var(--tw-content);
  width: 0px;
}
.before\:w-1::before{
  content: var(--tw-content);
  width: 0.25rem;
}
.before\:rounded-r-sm::before{
  content: var(--tw-content);
  border-top-right-radius: 3px;
  border-bottom-right-radius: 3px;
}
.before\:border-none::before{
  content: var(--tw-content);
  border-style: none;
}
.before\:border-platform-neutral-100::before{
  content: var(--tw-content);
  --tw-border-opacity: 1;
  border-color: rgb(240 242 245 / var(--tw-border-opacity, 1));
}
.before\:\!border-b-platform-primary-500::before{
  content: var(--tw-content);
  --tw-border-opacity: 1 !important;
  border-bottom-color: rgb(27 112 240 / var(--tw-border-opacity, 1)) !important;
}
.before\:\!border-l-platform-primary-500::before{
  content: var(--tw-content);
  --tw-border-opacity: 1 !important;
  border-left-color: rgb(27 112 240 / var(--tw-border-opacity, 1)) !important;
}
.before\:\!bg-platform-primary-500::before{
  content: var(--tw-content);
  --tw-bg-opacity: 1 !important;
  background-color: rgb(27 112 240 / var(--tw-bg-opacity, 1)) !important;
}
.before\:bg-platform-neutral-700::before{
  content: var(--tw-content);
  --tw-bg-opacity: 1;
  background-color: rgb(55 62 73 / var(--tw-bg-opacity, 1));
}
.before\:bg-platform-primary-500::before{
  content: var(--tw-content);
  --tw-bg-opacity: 1;
  background-color: rgb(27 112 240 / var(--tw-bg-opacity, 1));
}
.before\:bg-platform-primary-600::before{
  content: var(--tw-content);
  --tw-bg-opacity: 1;
  background-color: rgb(2 78 193 / var(--tw-bg-opacity, 1));
}
.before\:transition-\[width\]::before{
  content: var(--tw-content);
  transition-property: width;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.before\:content-\[\'\'\]::before{
  --tw-content: '';
  content: var(--tw-content);
}
.after\:pointer-events-none::after{
  content: var(--tw-content);
  pointer-events: none;
}
.after\:absolute::after{
  content: var(--tw-content);
  position: absolute;
}
.after\:inset-x-0::after{
  content: var(--tw-content);
  left: 0px;
  right: 0px;
}
.after\:bottom-0::after{
  content: var(--tw-content);
  bottom: 0px;
}
.after\:right-0::after{
  content: var(--tw-content);
  right: 0px;
}
.after\:right-\[-1px\]::after{
  content: var(--tw-content);
  right: -1px;
}
.after\:top-0::after{
  content: var(--tw-content);
  top: 0px;
}
.after\:z-10::after{
  content: var(--tw-content);
  z-index: 10;
}
.after\:\!h-1::after{
  content: var(--tw-content);
  height: 0.25rem !important;
}
.after\:h-0::after{
  content: var(--tw-content);
  height: 0px;
}
.after\:h-0\.5::after{
  content: var(--tw-content);
  height: 0.125rem;
}
.after\:h-\[3px\]::after{
  content: var(--tw-content);
  height: 3px;
}
.after\:h-full::after{
  content: var(--tw-content);
  height: 100%;
}
.after\:w-4::after{
  content: var(--tw-content);
  width: 1rem;
}
.after\:w-\[5px\]::after{
  content: var(--tw-content);
  width: 5px;
}
.after\:origin-center::after{
  content: var(--tw-content);
  transform-origin: center;
}
.after\:scale-x-100::after{
  content: var(--tw-content);
  --tw-scale-x: 1;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.after\:rounded::after{
  content: var(--tw-content);
  border-radius: 5px;
}
.after\:bg-platform-primary-500::after{
  content: var(--tw-content);
  --tw-bg-opacity: 1;
  background-color: rgb(27 112 240 / var(--tw-bg-opacity, 1));
}
.after\:bg-white::after{
  content: var(--tw-content);
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1));
}
.after\:bg-gradient-to-r::after{
  content: var(--tw-content);
  background-image: linear-gradient(to right, var(--tw-gradient-stops));
}
.after\:bg-\[length\:26px\]::after{
  content: var(--tw-content);
  background-size: 26px;
}
.after\:transition::after{
  content: var(--tw-content);
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, -webkit-backdrop-filter;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter, -webkit-backdrop-filter;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.after\:transition-\[height\]::after{
  content: var(--tw-content);
  transition-property: height;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.after\:content-\[\'\'\]::after{
  --tw-content: '';
  content: var(--tw-content);
}
.first\:rounded-none:first-child{
  border-radius: 0px;
}
.first\:font-medium:first-child{
  font-weight: 500;
}
.last\:mb-0:last-child{
  margin-bottom: 0px;
}
.last\:mb-\[55px\]:last-child{
  margin-bottom: 55px;
}
.last\:ml-0:last-child{
  margin-left: 0px;
}
.last\:border-r-0:last-child{
  border-right-width: 0px;
}
.last\:pb-5:last-child{
  padding-bottom: 1.25rem;
}
.last\:pb-\[55px\]:last-child{
  padding-bottom: 55px;
}
.hover\:scale-110:hover{
  --tw-scale-x: 1.1;
  --tw-scale-y: 1.1;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.hover\:scale-\[1\.02\]:hover{
  --tw-scale-x: 1.02;
  --tw-scale-y: 1.02;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.hover\:cursor-grab:hover{
  cursor: grab;
}
.hover\:cursor-pointer:hover{
  cursor: pointer;
}
.hover\:\!border-platform-primary-400:hover{
  --tw-border-opacity: 1 !important;
  border-color: rgb(87 157 247 / var(--tw-border-opacity, 1)) !important;
}
.hover\:border-blue:hover{
  --tw-border-opacity: 1;
  border-color: rgb(7 53 114 / var(--tw-border-opacity, 1));
}
.hover\:border-platform-extra-amber-700:hover{
  --tw-border-opacity: 1;
  border-color: rgb(174 84 13 / var(--tw-border-opacity, 1));
}
.hover\:border-platform-extra-cyan-dark:hover{
  --tw-border-opacity: 1;
  border-color: rgb(0 131 143 / var(--tw-border-opacity, 1));
}
.hover\:border-platform-extra-green:hover{
  --tw-border-opacity: 1;
  border-color: rgb(8 163 96 / var(--tw-border-opacity, 1));
}
.hover\:border-platform-extra-indigo-600:hover{
  --tw-border-opacity: 1;
  border-color: rgb(76 58 237 / var(--tw-border-opacity, 1));
}
.hover\:border-platform-extra-pink-700:hover{
  --tw-border-opacity: 1;
  border-color: rgb(182 26 92 / var(--tw-border-opacity, 1));
}
.hover\:border-platform-extra-purple-heavy:hover{
  --tw-border-opacity: 1;
  border-color: rgb(90 33 155 / var(--tw-border-opacity, 1));
}
.hover\:border-platform-extra-red-dark:hover{
  --tw-border-opacity: 1;
  border-color: rgb(212 36 34 / var(--tw-border-opacity, 1));
}
.hover\:border-platform-neutral-800\/25:hover{
  border-color: rgb(33 37 43 / 0.25);
}
.hover\:border-platform-primary-200:hover{
  --tw-border-opacity: 1;
  border-color: rgb(219 238 255 / var(--tw-border-opacity, 1));
}
.hover\:border-platform-primary-400:hover{
  --tw-border-opacity: 1;
  border-color: rgb(87 157 247 / var(--tw-border-opacity, 1));
}
.hover\:border-platform-primary-500:hover{
  --tw-border-opacity: 1;
  border-color: rgb(27 112 240 / var(--tw-border-opacity, 1));
}
.hover\:border-platform-primary-600:hover{
  --tw-border-opacity: 1;
  border-color: rgb(2 78 193 / var(--tw-border-opacity, 1));
}
.hover\:border-platform-primary\/50:hover{
  border-color: rgb(7 53 114 / 0.5);
}
.hover\:border-transparent:hover{
  border-color: transparent;
}
.hover\:\!bg-\[\#f5f9fb\]:hover{
  --tw-bg-opacity: 1 !important;
  background-color: rgb(245 249 251 / var(--tw-bg-opacity, 1)) !important;
}
.hover\:\!bg-platform-extra-purple\/80:hover{
  background-color: rgb(123 38 221 / 0.8) !important;
}
.hover\:\!bg-platform-primary-200:hover{
  --tw-bg-opacity: 1 !important;
  background-color: rgb(219 238 255 / var(--tw-bg-opacity, 1)) !important;
}
.hover\:\!bg-platform-primary-300\/80:hover{
  background-color: rgb(161 212 255 / 0.8) !important;
}
.hover\:\!bg-platform-primary-600\/80:hover{
  background-color: rgb(2 78 193 / 0.8) !important;
}
.hover\:\!bg-platform-primary-700:hover{
  --tw-bg-opacity: 1 !important;
  background-color: rgb(13 66 141 / var(--tw-bg-opacity, 1)) !important;
}
.hover\:bg-blue:hover{
  --tw-bg-opacity: 1;
  background-color: rgb(7 53 114 / var(--tw-bg-opacity, 1));
}
.hover\:bg-platform-neutral-100:hover{
  --tw-bg-opacity: 1;
  background-color: rgb(240 242 245 / var(--tw-bg-opacity, 1));
}
.hover\:bg-platform-neutral-200:hover{
  --tw-bg-opacity: 1;
  background-color: rgb(223 230 240 / var(--tw-bg-opacity, 1));
}
.hover\:bg-platform-neutral-50:hover{
  --tw-bg-opacity: 1;
  background-color: rgb(247 249 252 / var(--tw-bg-opacity, 1));
}
.hover\:bg-platform-neutral-600:hover{
  --tw-bg-opacity: 1;
  background-color: rgb(77 86 102 / var(--tw-bg-opacity, 1));
}
.hover\:bg-platform-neutral-white:hover{
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1));
}
.hover\:bg-platform-primary:hover{
  --tw-bg-opacity: 1;
  background-color: rgb(7 53 114 / var(--tw-bg-opacity, 1));
}
.hover\:bg-platform-primary-200:hover{
  --tw-bg-opacity: 1;
  background-color: rgb(219 238 255 / var(--tw-bg-opacity, 1));
}
.hover\:bg-platform-primary-50:hover{
  --tw-bg-opacity: 1;
  background-color: rgb(245 250 255 / var(--tw-bg-opacity, 1));
}
.hover\:bg-platform-primary-600\/75:hover{
  background-color: rgb(2 78 193 / 0.75);
}
.hover\:bg-platform-primary-700:hover{
  --tw-bg-opacity: 1;
  background-color: rgb(13 66 141 / var(--tw-bg-opacity, 1));
}
.hover\:bg-platform-primary\/75:hover{
  background-color: rgb(7 53 114 / 0.75);
}
.hover\:bg-platform-system-info-50:hover{
  --tw-bg-opacity: 1;
  background-color: rgb(245 250 255 / var(--tw-bg-opacity, 1));
}
.hover\:bg-transparent:hover{
  background-color: transparent;
}
.hover\:bg-white:hover{
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1));
}
.hover\:\!text-platform-neutral-600:hover{
  --tw-text-opacity: 1 !important;
  color: rgb(77 86 102 / var(--tw-text-opacity, 1)) !important;
}
.hover\:\!text-platform-neutral-white:hover{
  --tw-text-opacity: 1 !important;
  color: rgb(255 255 255 / var(--tw-text-opacity, 1)) !important;
}
.hover\:text-blue:hover{
  --tw-text-opacity: 1;
  color: rgb(7 53 114 / var(--tw-text-opacity, 1));
}
.hover\:text-blue-hover:hover{
  --tw-text-opacity: 1;
  color: rgb(15 33 62 / var(--tw-text-opacity, 1));
}
.hover\:text-inherit:hover{
  color: inherit;
}
.hover\:text-muted:hover{
  --tw-text-opacity: 1;
  color: rgb(183 183 183 / var(--tw-text-opacity, 1));
}
.hover\:text-platform-extra-amber-700:hover{
  --tw-text-opacity: 1;
  color: rgb(174 84 13 / var(--tw-text-opacity, 1));
}
.hover\:text-platform-extra-cyan-dark:hover{
  --tw-text-opacity: 1;
  color: rgb(0 131 143 / var(--tw-text-opacity, 1));
}
.hover\:text-platform-extra-green:hover{
  --tw-text-opacity: 1;
  color: rgb(8 163 96 / var(--tw-text-opacity, 1));
}
.hover\:text-platform-extra-indigo-600:hover{
  --tw-text-opacity: 1;
  color: rgb(76 58 237 / var(--tw-text-opacity, 1));
}
.hover\:text-platform-extra-pink-700:hover{
  --tw-text-opacity: 1;
  color: rgb(182 26 92 / var(--tw-text-opacity, 1));
}
.hover\:text-platform-extra-purple-heavy:hover{
  --tw-text-opacity: 1;
  color: rgb(90 33 155 / var(--tw-text-opacity, 1));
}
.hover\:text-platform-extra-red-dark:hover{
  --tw-text-opacity: 1;
  color: rgb(212 36 34 / var(--tw-text-opacity, 1));
}
.hover\:text-platform-neutral-100:hover{
  --tw-text-opacity: 1;
  color: rgb(240 242 245 / var(--tw-text-opacity, 1));
}
.hover\:text-platform-neutral-600:hover{
  --tw-text-opacity: 1;
  color: rgb(77 86 102 / var(--tw-text-opacity, 1));
}
.hover\:text-platform-neutral-800\/25:hover{
  color: rgb(33 37 43 / 0.25);
}
.hover\:text-platform-neutral-900:hover{
  --tw-text-opacity: 1;
  color: rgb(22 22 22 / var(--tw-text-opacity, 1));
}
.hover\:text-platform-neutral-white:hover{
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity, 1));
}
.hover\:text-platform-primary:hover{
  --tw-text-opacity: 1;
  color: rgb(7 53 114 / var(--tw-text-opacity, 1));
}
.hover\:text-platform-primary-500:hover{
  --tw-text-opacity: 1;
  color: rgb(27 112 240 / var(--tw-text-opacity, 1));
}
.hover\:text-platform-primary-600:hover{
  --tw-text-opacity: 1;
  color: rgb(2 78 193 / var(--tw-text-opacity, 1));
}
.hover\:text-platform-primary-800:hover{
  --tw-text-opacity: 1;
  color: rgb(7 53 114 / var(--tw-text-opacity, 1));
}
.hover\:text-white:hover{
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity, 1));
}
.hover\:underline:hover{
  text-decoration-line: underline;
}
.hover\:no-underline:hover{
  text-decoration-line: none;
}
.hover\:opacity-100:hover{
  opacity: 1;
}
.hover\:opacity-60:hover{
  opacity: 0.6;
}
.hover\:shadow-xl:hover{
  --tw-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
  --tw-shadow-colored: 0 20px 25px -5px var(--tw-shadow-color), 0 8px 10px -6px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.hover\:ease-in-out:hover{
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}
.hover\:after\:h-\[3px\]:hover::after{
  content: var(--tw-content);
  height: 3px;
}
.hover\:after\:scale-x-75:hover::after{
  content: var(--tw-content);
  --tw-scale-x: .75;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.hover\:after\:bg-platform-primary-500:hover::after{
  content: var(--tw-content);
  --tw-bg-opacity: 1;
  background-color: rgb(27 112 240 / var(--tw-bg-opacity, 1));
}
.focus\:\!rounded:focus{
  border-radius: 5px !important;
}
.focus\:border-platform-neutral-300:focus{
  --tw-border-opacity: 1;
  border-color: rgb(206 218 237 / var(--tw-border-opacity, 1));
}
.focus\:border-platform-primary:focus{
  --tw-border-opacity: 1;
  border-color: rgb(7 53 114 / var(--tw-border-opacity, 1));
}
.focus\:border-red-lighter:focus{
  --tw-border-opacity: 1;
  border-color: rgb(241 108 108 / var(--tw-border-opacity, 1));
}
.focus\:\!bg-transparent:focus{
  background-color: transparent !important;
}
.focus\:no-underline:focus{
  text-decoration-line: none;
}
.focus-visible\:rounded:focus-visible{
  border-radius: 5px;
}
.focus-visible\:border-platform-neutral-600:focus-visible{
  --tw-border-opacity: 1;
  border-color: rgb(77 86 102 / var(--tw-border-opacity, 1));
}
.focus-visible\:outline-none:focus-visible{
  outline: 2px solid transparent;
  outline-offset: 2px;
}
.focus-visible\:outline-0:focus-visible{
  outline-width: 0px;
}
.focus-visible\:ring-2:focus-visible{
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
}
.focus-visible\:ring-4:focus-visible{
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(4px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
}
.focus-visible\:\!ring-platform-primary-400:focus-visible{
  --tw-ring-opacity: 1 !important;
  --tw-ring-color: rgb(87 157 247 / var(--tw-ring-opacity, 1)) !important;
}
.focus-visible\:ring-blue\/50:focus-visible{
  --tw-ring-color: rgb(7 53 114 / 0.5);
}
.focus-visible\:ring-platform-primary-400:focus-visible{
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(87 157 247 / var(--tw-ring-opacity, 1));
}
.focus-visible\:ring-platform-primary-500:focus-visible{
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(27 112 240 / var(--tw-ring-opacity, 1));
}
.focus-visible\:ring-offset-1:focus-visible{
  --tw-ring-offset-width: 1px;
}
.focus-visible\:ring-offset-2:focus-visible{
  --tw-ring-offset-width: 2px;
}
.active\:pointer-events-none:active{
  pointer-events: none;
}
.active\:mb-0:active{
  margin-bottom: 0px;
}
.active\:border-platform-neutral-800\/25:active{
  border-color: rgb(33 37 43 / 0.25);
}
.active\:border-platform-primary-600:active{
  --tw-border-opacity: 1;
  border-color: rgb(2 78 193 / var(--tw-border-opacity, 1));
}
.active\:border-platform-primary\/90:active{
  border-color: rgb(7 53 114 / 0.9);
}
.active\:\!bg-platform-primary-800:active{
  --tw-bg-opacity: 1 !important;
  background-color: rgb(7 53 114 / var(--tw-bg-opacity, 1)) !important;
}
.active\:bg-platform-neutral-white:active{
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1));
}
.active\:bg-platform-primary-200:active{
  --tw-bg-opacity: 1;
  background-color: rgb(219 238 255 / var(--tw-bg-opacity, 1));
}
.active\:bg-platform-primary-300:active{
  --tw-bg-opacity: 1;
  background-color: rgb(161 212 255 / var(--tw-bg-opacity, 1));
}
.active\:bg-platform-primary-600\/50:active{
  background-color: rgb(2 78 193 / 0.5);
}
.active\:bg-platform-primary\/90:active{
  background-color: rgb(7 53 114 / 0.9);
}
.active\:text-platform-neutral-100:active{
  --tw-text-opacity: 1;
  color: rgb(240 242 245 / var(--tw-text-opacity, 1));
}
.active\:text-platform-neutral-600:active{
  --tw-text-opacity: 1;
  color: rgb(77 86 102 / var(--tw-text-opacity, 1));
}
.active\:text-platform-neutral-800\/50:active{
  color: rgb(33 37 43 / 0.5);
}
.enabled\:cursor-pointer:enabled{
  cursor: pointer;
}
.disabled\:pointer-events-none:disabled{
  pointer-events: none;
}
.disabled\:cursor-not-allowed:disabled{
  cursor: not-allowed;
}
.disabled\:border-0:disabled{
  border-width: 0px;
}
.disabled\:\!border-platform-neutral-300:disabled{
  --tw-border-opacity: 1 !important;
  border-color: rgb(206 218 237 / var(--tw-border-opacity, 1)) !important;
}
.disabled\:border-platform-neutral-800\/50:disabled{
  border-color: rgb(33 37 43 / 0.5);
}
.disabled\:\!bg-platform-neutral-100:disabled{
  --tw-bg-opacity: 1 !important;
  background-color: rgb(240 242 245 / var(--tw-bg-opacity, 1)) !important;
}
.disabled\:bg-platform-neutral-800\/25:disabled{
  background-color: rgb(33 37 43 / 0.25);
}
.disabled\:bg-platform-neutral-800\/50:disabled{
  background-color: rgb(33 37 43 / 0.5);
}
.disabled\:text-platform-neutral-400:disabled{
  --tw-text-opacity: 1;
  color: rgb(155 166 185 / var(--tw-text-opacity, 1));
}
.disabled\:text-platform-neutral-800\/50:disabled{
  color: rgb(33 37 43 / 0.5);
}
.disabled\:opacity-30:disabled{
  opacity: 0.3;
}
.disabled\:opacity-50:disabled{
  opacity: 0.5;
}
.disabled\:hover\:cursor-not-allowed:hover:disabled{
  cursor: not-allowed;
}
.disabled\:hover\:text-platform-neutral-800\/50:hover:disabled{
  color: rgb(33 37 43 / 0.5);
}
.disabled\:hover\:text-transparent:hover:disabled{
  color: transparent;
}
.group\/match-button:hover .group-hover\/match-button\:visible{
  visibility: visible;
}
.group\/match-button:hover .group-hover\/match-button\:invisible{
  visibility: hidden;
}
.group\/radio:hover .group-hover\/radio\:\!block{
  display: block !important;
}
.group\/radio:hover .group-hover\/radio\:h-2\.5{
  height: 0.625rem;
}
.group\/radio:hover .group-hover\/radio\:w-2\.5{
  width: 0.625rem;
}
.group:hover .group-hover\:scale-y-100{
  --tw-scale-y: 1;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.group:hover .group-hover\:cursor-pointer{
  cursor: pointer;
}
.group:hover .group-hover\:border-platform-neutral-200{
  --tw-border-opacity: 1;
  border-color: rgb(223 230 240 / var(--tw-border-opacity, 1));
}
.group\/radio:hover .group-hover\/radio\:\!bg-platform-primary\/50{
  background-color: rgb(7 53 114 / 0.5) !important;
}
.group:hover .group-hover\:bg-platform-neutral-50{
  --tw-bg-opacity: 1;
  background-color: rgb(247 249 252 / var(--tw-bg-opacity, 1));
}
.group:hover .group-hover\:bg-platform-primary-200{
  --tw-bg-opacity: 1;
  background-color: rgb(219 238 255 / var(--tw-bg-opacity, 1));
}
.group:hover .group-hover\:bg-platform-primary-50{
  --tw-bg-opacity: 1;
  background-color: rgb(245 250 255 / var(--tw-bg-opacity, 1));
}
.group:hover .group-hover\:fill-platform-primary{
  fill: #073572;
}
.group:hover .group-hover\:text-platform-neutral-600{
  --tw-text-opacity: 1;
  color: rgb(77 86 102 / var(--tw-text-opacity, 1));
}
.group:hover .group-hover\:text-platform-primary{
  --tw-text-opacity: 1;
  color: rgb(7 53 114 / var(--tw-text-opacity, 1));
}
.group:hover .group-hover\:opacity-100{
  opacity: 1;
}
.group:hover .enabled\:group-hover\:bg-platform-neutral-50:enabled{
  --tw-bg-opacity: 1;
  background-color: rgb(247 249 252 / var(--tw-bg-opacity, 1));
}
.group:active .group-active\:bg-platform-primary-400{
  --tw-bg-opacity: 1;
  background-color: rgb(87 157 247 / var(--tw-bg-opacity, 1));
}
.group.ember-basic-dropdown-content--above .group-\[\.ember-basic-dropdown-content--above\]\:bottom-\[-6\.5px\]{
  bottom: -6.5px;
}
.group.ember-basic-dropdown-content--below .group-\[\.ember-basic-dropdown-content--below\]\:top-\[-6\.5px\]{
  top: -6.5px;
}
.group.ember-basic-dropdown-content--center .group-\[\.ember-basic-dropdown-content--center\]\:left-1\/2{
  left: 50%;
}
.group.ember-basic-dropdown-content--left .group-\[\.ember-basic-dropdown-content--left\]\:left-1\.5{
  left: 0.375rem;
}
.group.ember-basic-dropdown-content--right .group-\[\.ember-basic-dropdown-content--right\]\:right-1\.5{
  right: 0.375rem;
}
.group.ember-basic-dropdown-content--center .group-\[\.ember-basic-dropdown-content--center\]\:-translate-x-1\.5{
  --tw-translate-x: -0.375rem;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.group.ember-basic-dropdown-content--above .group-\[\.ember-basic-dropdown-content--above\]\:border-b{
  border-bottom-width: 1px;
}
.group.ember-basic-dropdown-content--above .group-\[\.ember-basic-dropdown-content--above\]\:border-r{
  border-right-width: 1px;
}
.group.ember-basic-dropdown-content--below .group-\[\.ember-basic-dropdown-content--below\]\:border-l{
  border-left-width: 1px;
}
.group.ember-basic-dropdown-content--below .group-\[\.ember-basic-dropdown-content--below\]\:border-t{
  border-top-width: 1px;
}
.group.has-bottom-shadow .group-\[\.has-bottom-shadow\]\:opacity-100{
  opacity: 1;
}
.group.has-top-shadow .group-\[\.has-top-shadow\]\:opacity-100{
  opacity: 1;
}
@container organization-details (min-width: 1000px){
  .\@heliumFullView\/organization-details\:block{
    display: block;
  }
  .\@heliumFullView\/organization-details\:flex{
    display: flex;
  }
  .\@heliumFullView\/organization-details\:hidden{
    display: none;
  }
  .\@heliumFullView\/organization-details\:h-\[100px\]{
    height: 100px;
  }
  .\@heliumFullView\/organization-details\:h-\[120px\]{
    height: 120px;
  }
  .\@heliumFullView\/organization-details\:w-\[290px\]{
    width: 290px;
  }
  .\@heliumFullView\/organization-details\:min-w-\[290px\]{
    min-width: 290px;
  }
  .\@heliumFullView\/organization-details\:max-w-\[300px\]{
    max-width: 300px;
  }
  .\@heliumFullView\/organization-details\:max-w-\[350px\]{
    max-width: 350px;
  }
  .\@heliumFullView\/organization-details\:flex-1{
    flex: 1 1 0%;
  }
  .\@heliumFullView\/organization-details\:flex-row{
    flex-direction: row;
  }
  .\@heliumFullView\/organization-details\:justify-between{
    justify-content: space-between;
  }
  .\@heliumFullView\/organization-details\:text-left{
    text-align: left;
  }
  .\@heliumFullView\/organization-details\:opacity-100{
    opacity: 1;
  }
}
@container (min-width: 1000px){
  .\@heliumFullView\:block{
    display: block;
  }
  .\@heliumFullView\:flex{
    display: flex;
  }
  .\@heliumFullView\:hidden{
    display: none;
  }
  .\@heliumFullView\:justify-between{
    justify-content: space-between;
  }
}
@media (max-width: 1408px){
  .max-\[1408px\]\:w-\[360px\]{
    width: 360px;
  }
  .max-\[1408px\]\:gap-8{
    gap: 2rem;
  }
}
@media (min-width: 575px){
  .sm\:block{
    display: block;
  }
  .sm\:flex{
    display: flex;
  }
  .sm\:h-\[40px\]{
    height: 40px;
  }
}
@media (min-width: 901px){
  .md\:max-w-4xl{
    max-width: 56rem;
  }
  .md\:max-w-6xl{
    max-width: 72rem;
  }
}
@media (min-width: 1390px){
  .timeline-full-size\:block{
    display: block;
  }
  .timeline-full-size\:inline-block{
    display: inline-block;
  }
}
@media (min-width: 1600px){
  .\32xl\:max-w-timeline-xl{
    max-width: 32%;
  }
  .\32xl\:flex-timeline-xl{
    flex: 0 1 32%;
  }
}
.\[\&\.dragging-active_button\]\:\!cursor-grabbing.dragging-active button{
  cursor: grabbing !important;
}
.\[\&\:\:-webkit-inner-spin-button\]\:opacity-100::-webkit-inner-spin-button{
  opacity: 1;
}
.\[\&\:\:-webkit-outer-spin-button\]\:opacity-100::-webkit-outer-spin-button{
  opacity: 1;
}
.\[\&\:empty\]\:hidden:empty{
  display: none;
}
.\[\&\:not\(\:first-child\)\:not\(\:empty\)\]\:mt-2:not(:first-child):not(:empty){
  margin-top: 0.5rem;
}
.\[\&\:not\(\:first-child\)\]\:border:not(:first-child){
  border-width: 1px;
}
.\[\&\:not\(\:first-child\)\]\:border-solid:not(:first-child){
  border-style: solid;
}
.\[\&\:not\(\:first-child\)\]\:border-grey:not(:first-child){
  --tw-border-opacity: 1;
  border-color: rgb(230 234 236 / var(--tw-border-opacity, 1));
}
.\[\&\:not\(\:first-child\)\]\:pl-2\.5:not(:first-child){
  padding-left: 0.625rem;
}
.\[\&\:not\(\:last-child\)\]\:mb-2:not(:last-child){
  margin-bottom: 0.5rem;
}
.\[\&\>a\]\:underline>a{
  text-decoration-line: underline;
}
.\[\&\>td\]\:\!bg-platform-primary-100>td{
  --tw-bg-opacity: 1 !important;
  background-color: rgb(237 246 255 / var(--tw-bg-opacity, 1)) !important;
}
.ember-power-select-option .\[\.ember-power-select-option_\&\]\:hidden{
  display: none;
}