<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.message {
  margin-bottom: 42px;
}

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

.message__bubble {
  border: solid 1px rgba(0, 0, 0, 0.1);
  border-radius: 6px;
  padding: 15px 12px 5px 12px;
  max-width: 370px;
  min-width: 200px;
}

.message__bubble--image {
  padding: 0;
  overflow: hidden;
}

.message__owner {
  text-align: right;
  font-size: 14px;
  margin-bottom: 8px;
}

.message__bubble--incoming {
  background: #f8f8f8;
}

.message__bubble--outgoing {
  background: #555555;
  color: white;
}

.message__bubble__text {
  margin-bottom: 4px;
}

.message__bubble__date {
  font-size: 12px;
  text-align: right;
  opacity: 0.7;
}

.contact-avatar {
  border-radius: 100%;
  color: white;
  font-weight: 500;
  display: inline-block;
  padding: 0.81em;
  position: relative;
  line-height: 0;
  width: 0;
}

.contact-avatar__letter {
  padding: 0;
  margin: 0;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
}

.active-conversation__header {
  border-bottom: solid 1px rgba(0, 0, 0, 0.1);
  padding: 16px;
  display: flex;
  align-items: center;
}

.active-conversation__header__contact {
  display: flex;
  align-items: center;
}

.active-conversation__name {
  padding-left: 24px;
}

.active-conversation__name__business-name {
  font-size: 18px;
  font-weight: 700;
  display: block;
  line-height: 1;
}

.active-conversation__name__name {
  font-size: 14px;
  line-height: 1;
}

.active-conversation__header__transfer {
  margin-left: auto;
}

.active-conversation__header__mark-done {
  margin-left: 24px;
}

.active-conversation__window {
  display: flex;
  flex-direction: column;
  height: calc(100vh - 152px);
}

.active-conversation__window__messages {
  padding-top: 32px;
  padding-left: 32px;
  padding-right: 32px;
  overflow-y: auto;
}
.active-conversation__window__messages::-webkit-scrollbar {
  display: none;
}

.active-conversation__window__message-window {
  margin-top: auto;
  height: auto;
}

.active-conversation__sidebar {
  background: #FAFAFA;
  border-left: solid 1px rgba(0, 0, 0, 0.1);
  height: 100%;
  max-height: calc(100vh - 146px);
  overflow-y: auto;
}

.transfer-conversation-dropdown__button {
  border: none;
  padding: none;
  outline: none;
  background: transparent;
  box-shadow: none;
  color: #656565;
  font-size: 18px;
}
.transfer-conversation-dropdown__button:active, .transfer-conversation-dropdown__button:focus {
  outline: none;
  border: none;
  box-shadow: none;
}

.transfer-conversation-dropdown__box {
  height: 200px;
  overflow-y: auto;
  max-width: 350px;
  width: 350px;
  z-index: 10;
}
.transfer-conversation-dropdown__box .form-control {
  width: 100%;
  margin-bottom: 10px;
}
.transfer-conversation-dropdown__box .show {
  display: block;
}
.transfer-conversation-dropdown__box .dropdown-item {
  padding-left: 2px;
  display: flex;
  justify-content: space-between;
}
.transfer-conversation-dropdown__box .dropdown-item .fas.online {
  color: #66BB05;
}
.transfer-conversation-dropdown__box .dropdown-item .fas.offline {
  color: rgba(0, 0, 0, 0.3);
}

.mark-done-button {
  border-radius: 3px;
  border: solid 2px rgba(0, 0, 0, 0.18);
  outline: none;
  background: transparent;
  font-size: 18px;
  padding: 10px 20px;
  color: #7e7e7e;
  font-weight: 400;
  box-shadow: none;
}
.mark-done-button:active, .mark-done-button:focus {
  outline: none;
  box-shadow: none;
}

.mark-done-button__check {
  color: #66BB05;
  display: inline-block;
  margin-right: 16px;
}

.message-window {
  display: flex;
  align-items: flex-end;
  border-top: solid 1px rgba(0, 0, 0, 0.1);
}

.message-window__emoji-box {
  width: 62px;
  flex-basis: 62px;
  text-align: center;
  font-size: 18px;
}

.message-window__emoji-box {
  padding-bottom: 9px;
}

.message-window__textarea {
  border: none;
  width: 100%;
  padding: 10px;
  height: auto;
  resize: none;
  overflow: hidden;
  outline: none;
  font-size: 18px;
  border-left: solid 1px rgba(0, 0, 0, 0.1);
}

.message-window__textarea.error {
  background: rgba(255, 0, 0, 0.2);
  cursor: pointer;
}
.message-window__textarea.error ::placeholder {
  color: black;
  font-weight: bold;
  opacity: 1;
}
.message-window__textarea.error ::-webkit-input-placeholder {
  color: black;
  font-weight: bold;
  opacity: 1;
}

#fileUploader {
  display: none;
}

#fileUploaderLabel {
  cursor: pointer;
  font-size: 20px;
}

.message-media {
  position: relative;
  display: inline-block;
  width: auto;
  cursor: pointer;
  padding: 10px;
}

.message-media__delete {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  color: white;
  text-shadow: 0px 0px 6px rgba(0, 0, 0, 0.75);
  font-size: 64px;
  padding: 25px;
  border: solid 6px white;
  border-radius: 100%;
  width: 126px;
  text-align: center;
  box-sizing: border-box;
  box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.75);
  transition: color ease-out 0.2s, border-color ease-out 0.2s, opacity ease-out 0.2s;
  opacity: 0.75;
}
.message-media__delete:hover {
  color: #F63737;
  border-color: #F63737;
  opacity: 1;
}

.message-media__media {
  max-width: 300px;
  display: inline-block;
  border-radius: 6px;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.conversation-information__header__nimble-sync {
  display: inline-block;
  margin-left: 4px;
  font-size: 14px;
  cursor: pointer;
  color: #66BB05;
}
.conversation-information__header__nimble-sync:hover {
  color: rgba(102, 187, 5, 0.75);
}

.conversation-information__header__nimble-sync__label {
  display: inline-block;
  margin-right: 6px;
}

.conversation-information__header__nimble-sync__icon {
  margin-left: auto;
}
.conversation-information__header__nimble-sync__icon.active {
  animation: spin 0.75s infinite linear;
}

.conversation-information {
  padding: 16px;
  color: black;
}

.conversation-information__header {
  display: flex;
  flex-direction: row;
  align-items: center;
}

.conversation-information__header__contact-name {
  padding-left: 16px;
}

.conversation-information__header__contact-name__name {
  font-size: 20px;
  margin-bottom: 0;
}

.conversation-information__header__contact-name__conversation-count {
  font-size: 14px;
}

.conversation-information__header__opt-out {
  margin-left: auto;
  font-weight: 500;
}

.conversation-information__rep-well {
  border: solid 1px rgba(0, 0, 0, 0.1);
  border-radius: 3px;
  background: white;
  padding: 16px;
  margin-top: 16px;
  margin-bottom: 16px;
}

.conversation-information__rep-well__top-card {
  margin-bottom: 16px;
}

.conversation-information__business-info {
  padding-top: 16px;
}

.conversation-information__business-info__baccount {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 16px;
  display: inline-block;
}

.conversation-information__business-info__fact {
  margin-bottom: 8px;
}

.conversation-information__business-info__fact__heading {
  font-size: 16px;
  margin: 0;
}

.conversation__business-info__fact__data {
  font-size: 14px;
}

.rep-card {
  display: flex;
  align-items: center;
}

.rep-card__avatar {
  height: 70px;
  width: 70px;
  margin-right: 16px;
  border-radius: 100%;
  background-size: contain;
  background-position: center center;
}

.rep-card__info__role {
  font-size: 16px;
  margin-bottom: 0;
}

.rep-card__info__name {
  font-size: 14px;
}

.conversation {
  display: flex;
  border-bottom: solid 1px rgba(0, 0, 0, 0.1);
  align-items: center;
  padding: 12px;
  cursor: pointer;
}
.conversation .unread {
  font-weight: 600;
}
.conversation:not(.active):hover {
  background: rgba(102, 187, 5, 0.25);
}
.conversation.active {
  border: solid 1px rgba(102, 187, 5, 0.8);
  background: rgba(102, 187, 5, 0.5);
}

.conversation__contact-info {
  padding-left: 12px;
}

.conversation__contact-info__business-name {
  font-size: 16px;
  margin: 0;
  margin-bottom: 1px;
}

.conversation__contact-info__name {
  font-size: 14px;
  margin-bottom: 2px;
}

.conversation__contact-info__last-message {
  font-size: 14px;
}

.conversation__timestamp {
  margin-left: auto;
}

.conversation__unread {
  margin-left: 12px;
}

.conversation__unread__unread-count {
  opacity: 0;
  background: #66BB05;
  border-radius: 6px;
  font-weight: 800;
  padding: 3px 6px;
  color: white;
  display: inline-block;
  min-width: 22px;
  text-align: center;
}
.conversation__unread__unread-count.active {
  opacity: 1;
}

.conversation__contact-info__phone {
  font-size: 12px;
}

.conversations {
  border-left: solid 1px rgba(0, 0, 0, 0.1);
  border-right: solid 1px rgba(0, 0, 0, 0.1);
  height: 100%;
  min-height: calc(100vh - 62px);
  max-height: calc(10vh - 62px);
  overflow-y: auto;
}

.conversations__list {
  display: none;
}
.conversations__list.active {
  display: block;
}

.conversations__header {
  border-bottom: solid 1px rgba(0, 0, 0, 0.1);
  padding-left: 16px;
  padding-right: 16px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

@keyframes blinker {
  50% {
    background-color: white;
  }
}
.conversations__header__selector {
  text-align: center;
  padding-bottom: 16px;
  padding-top: 16px;
  position: relative;
  width: 145px;
  padding-left: 8px;
  padding-right: 8px;
  cursor: pointer;
}
.conversations__header__selector.unread {
  background-color: rgba(102, 187, 5, 0.25);
  animation: blinker 1s linear infinite;
}
.conversations__header__selector:hover {
  background: rgba(0, 0, 0, 0.1);
}
.conversations__header__selector.active:after {
  content: "";
  display: block;
  position: absolute;
  height: 4px;
  width: 145px;
  background: #66BB05;
  bottom: 0;
  left: 0;
}

.conversations__header__selecter__number {
  display: block;
  font-size: 36px;
  margin-bottom: 0px;
}

.conversations__header__selector__title {
  font-size: 18px;
}

.no-message-selected {
  height: 100%;
}

.no-message-selected__container {
  padding-top: 128px;
}

.no-message-selected__header {
  font-size: 36px;
}

.no-message-selected__subheader {
  font-size: 24px;
}

.conversation-done-marker {
  margin-top: 32px;
  margin-bottom: 32px;
  text-align: center;
  position: relative;
}
.conversation-done-marker:before {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background: rgba(0, 0, 0, 0.2);
  position: absolute;
  left: 0;
  top: 36%;
  transform: translateY(-50%);
}

.conversation-done-marker__button {
  display: inline-block;
  border: solid 1px rgba(0, 0, 0, 0.2);
  border-radius: 50px;
  background: white;
  padding: 10px 28px;
  font-size: 14px;
  color: #999999;
  position: relative;
}

.conversation-done-marker__button__user {
  color: black;
  font-weight: 500;
}

.conversation-done-marker__button__check {
  color: #66BB05;
}

.conversation-done-marker__time {
  font-size: 12px;
  color: #999999;
}

.lead-creation-form {
  padding-top: 64px;
}

.loading {
  display: flex;
  flex-direction: column;
  height: 100%;
  width: 100%;
}
.loading.loading--app {
  height: 100vh;
  width: 100vw;
}
.loading.loading--app .loader {
  font-size: 20px;
}

.loading__container {
  position: relative;
  margin-top: auto;
  margin-bottom: auto;
  margin-left: auto;
  margin-right: auto;
}

.loader {
  color: #66BB05;
  font-size: 9px;
  margin: 100px auto;
  width: 1em;
  height: 1em;
  border-radius: 50%;
  position: relative;
  text-indent: -9999em;
  -webkit-animation: load4 0.8s infinite linear;
  animation: load4 0.8s infinite linear;
  -webkit-transform: translateZ(0);
  -ms-transform: translateZ(0);
  transform: translateZ(0);
}

@-webkit-keyframes load4 {
  0%, 100% {
    box-shadow: 0 -3em 0 0.2em, 2em -2em 0 0em, 3em 0 0 -1em, 2em 2em 0 -1em, 0 3em 0 -1em, -2em 2em 0 -1em, -3em 0 0 -1em, -2em -2em 0 0;
  }
  12.5% {
    box-shadow: 0 -3em 0 0, 2em -2em 0 0.2em, 3em 0 0 0, 2em 2em 0 -1em, 0 3em 0 -1em, -2em 2em 0 -1em, -3em 0 0 -1em, -2em -2em 0 -1em;
  }
  25% {
    box-shadow: 0 -3em 0 -0.5em, 2em -2em 0 0, 3em 0 0 0.2em, 2em 2em 0 0, 0 3em 0 -1em, -2em 2em 0 -1em, -3em 0 0 -1em, -2em -2em 0 -1em;
  }
  37.5% {
    box-shadow: 0 -3em 0 -1em, 2em -2em 0 -1em, 3em 0em 0 0, 2em 2em 0 0.2em, 0 3em 0 0em, -2em 2em 0 -1em, -3em 0em 0 -1em, -2em -2em 0 -1em;
  }
  50% {
    box-shadow: 0 -3em 0 -1em, 2em -2em 0 -1em, 3em 0 0 -1em, 2em 2em 0 0em, 0 3em 0 0.2em, -2em 2em 0 0, -3em 0em 0 -1em, -2em -2em 0 -1em;
  }
  62.5% {
    box-shadow: 0 -3em 0 -1em, 2em -2em 0 -1em, 3em 0 0 -1em, 2em 2em 0 -1em, 0 3em 0 0, -2em 2em 0 0.2em, -3em 0 0 0, -2em -2em 0 -1em;
  }
  75% {
    box-shadow: 0em -3em 0 -1em, 2em -2em 0 -1em, 3em 0em 0 -1em, 2em 2em 0 -1em, 0 3em 0 -1em, -2em 2em 0 0, -3em 0em 0 0.2em, -2em -2em 0 0;
  }
  87.5% {
    box-shadow: 0em -3em 0 0, 2em -2em 0 -1em, 3em 0 0 -1em, 2em 2em 0 -1em, 0 3em 0 -1em, -2em 2em 0 0, -3em 0em 0 0, -2em -2em 0 0.2em;
  }
}
@keyframes load4 {
  0%, 100% {
    box-shadow: 0 -3em 0 0.2em, 2em -2em 0 0em, 3em 0 0 -1em, 2em 2em 0 -1em, 0 3em 0 -1em, -2em 2em 0 -1em, -3em 0 0 -1em, -2em -2em 0 0;
  }
  12.5% {
    box-shadow: 0 -3em 0 0, 2em -2em 0 0.2em, 3em 0 0 0, 2em 2em 0 -1em, 0 3em 0 -1em, -2em 2em 0 -1em, -3em 0 0 -1em, -2em -2em 0 -1em;
  }
  25% {
    box-shadow: 0 -3em 0 -0.5em, 2em -2em 0 0, 3em 0 0 0.2em, 2em 2em 0 0, 0 3em 0 -1em, -2em 2em 0 -1em, -3em 0 0 -1em, -2em -2em 0 -1em;
  }
  37.5% {
    box-shadow: 0 -3em 0 -1em, 2em -2em 0 -1em, 3em 0em 0 0, 2em 2em 0 0.2em, 0 3em 0 0em, -2em 2em 0 -1em, -3em 0em 0 -1em, -2em -2em 0 -1em;
  }
  50% {
    box-shadow: 0 -3em 0 -1em, 2em -2em 0 -1em, 3em 0 0 -1em, 2em 2em 0 0em, 0 3em 0 0.2em, -2em 2em 0 0, -3em 0em 0 -1em, -2em -2em 0 -1em;
  }
  62.5% {
    box-shadow: 0 -3em 0 -1em, 2em -2em 0 -1em, 3em 0 0 -1em, 2em 2em 0 -1em, 0 3em 0 0, -2em 2em 0 0.2em, -3em 0 0 0, -2em -2em 0 -1em;
  }
  75% {
    box-shadow: 0em -3em 0 -1em, 2em -2em 0 -1em, 3em 0em 0 -1em, 2em 2em 0 -1em, 0 3em 0 -1em, -2em 2em 0 0, -3em 0em 0 0.2em, -2em -2em 0 0;
  }
  87.5% {
    box-shadow: 0em -3em 0 0, 2em -2em 0 -1em, 3em 0 0 -1em, 2em 2em 0 -1em, 0 3em 0 -1em, -2em 2em 0 0, -3em 0em 0 0, -2em -2em 0 0.2em;
  }
}
.chat-history-table {
  padding-top: 32px;
  padding-left: 16px;
  padding-right: 16px;
}

.chat-history-table__heading {
  margin-bottom: 32px;
}

.chat-history-table__table {
  border: solid 1px rgba(0, 0, 0, 0.125);
  border-radius: 6px;
  margin-bottom: 16px;
}
.chat-history-table__table .table {
  margin-bottom: 0;
}

.chat-history-table__row {
  cursor: pointer;
}
.chat-history-table__row * {
  cursor: pointer;
}

.chat-history-table__footer {
  display: flex;
  align-items: center;
}

.chat-history-table__pagination {
  margin-bottom: 0;
  margin-right: 16px;
}

.chat-history-table__header {
  margin-bottom: 24px;
  display: flex;
  align-items: center;
}

.chat-history-table__header__label {
  font-weight: 500;
}

.chat-history-table__whos {
  margin-right: 32px;
}

.chat-history-table__items-per-page__link {
  margin-left: 8px;
}
.chat-history-table__items-per-page__link.active {
  font-weight: bold;
  text-decoration: underline;
}

.chat-history-conversation {
  height: 100%;
  overflow-y: auto;
}

.chat-history-conversation__information {
  border-bottom: dashed 2px rgba(0, 0, 0, 0.125);
  padding-bottom: 32px;
  margin-bottom: 32px;
}

.chat-history-conversation__information-close {
  cursor: pointer;
  font-size: 32px;
  margin-left: 16px;
}
.chat-history-conversation__information-close:hover {
  color: rgba(0, 0, 0, 0.5);
}

.chat-history__message {
  border-bottom: dashed 1px rgba(0, 0, 0, 0.125);
  padding: 16px;
  display: flex;
  justify-content: space-between;
}

.chat-history__message__header {
  margin-bottom: 8px;
}
.chat-history__message__header.incoming .chat-history__message__header__name,
.chat-history__message__header.incoming .chat-history__message__header__number {
  color: #96A677;
}

.chat-history__message__header__name {
  font-size: 14px;
  margin-bottom: 0;
  color: rgba(0, 0, 0, 0.75);
}

.chat-history__message__header__number {
  font-size: 12px;
  margin-bottom: 0;
  color: rgba(0, 0, 0, 0.75);
}

.chat-history__message__body {
  font-size: 14px;
}

.chat-history__message__right {
  padding-top: 10px;
  font-size: 14px;
}

.filterable-select {
  position: relative;
  z-index: 10;
}

.filterable-select__select {
  position: relative;
  cursor: pointer;
}
.filterable-select__select.disabled {
  background: #E9ECEF;
  cursor: default;
}

.filterable-select__select__arrow {
  font-size: 12px;
  position: absolute;
  right: 6px;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(0, 0, 0, 0.6);
}

.filterable-select__list {
  width: 100%;
  border-radius: 0;
  border: solid 1px rgba(0, 0, 0, 0.7);
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
}

.filterable-select__list__scroll {
  max-height: 250px;
  overflow-y: auto;
}

.filterable-select__list__filter {
  padding: 6px 16px;
}

.z-100 {
  z-index: 99;
  position: relative;
}

.z-50 {
  z-index: 50;
  position: relative;
}

.popup-overlay {
  height: 100vh;
  width: 100vw;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 9;
  display: none;
}
.popup-overlay.show {
  display: block;
}

.left-border {
  border-left: solid 1px rgba(0, 0, 0, 0.1);
}

.full-height {
  height: calc(100vh - 63px);
}

body {
  font-size: 16px;
  color: #555;
}

#blazor-error-ui {
  display: none;
}

.height-100vh {
  height: calc(100vh - 62px);
}

.header {
  max-height: 62px;
  height: 100%;
  background: #66BB05;
  display: flex;
  flex-direction: column;
}

.header__container {
  display: flex;
  align-items: center;
  margin-top: auto;
  margin-bottom: auto;
}

.nav {
  margin-left: auto;
  padding-right: 32px;
}

.nav__link {
  color: white;
  font-weight: 500;
  font-size: 18px;
  margin-left: 16px;
}
.nav__link:hover, .nav__link:active, .nav__link:focus {
  color: rgba(255, 255, 255, 0.65);
}

.header__logo {
  display: inline-block;
  width: 250px;
  padding-left: 32px;
  margin-top: auto;
  margin-bottom: auto;
}

.app-container {
  border: solid 1px rgba(0, 0, 0, 0.1);
  max-width: 1730px;
  padding: 0;
  height: 100vh;
}

.btn.btn-primary:not(:disabled):not(.disabled) {
  background: #66BB05;
  border-color: #66BB05;
  outline: none !important;
  box-shadow: none;
}
.btn.btn-primary:not(:disabled):not(.disabled):hover, .btn.btn-primary:not(:disabled):not(.disabled):focus, .btn.btn-primary:not(:disabled):not(.disabled):active {
  background: rgba(102, 187, 5, 0.55);
  border-color: rgba(102, 187, 5, 0.55);
  box-shadow: none;
}

a {
  color: #66BB05;
}
a:hover, a:focus, a:active {
  color: rgba(102, 187, 5, 0.55);
  text-decoration: none;
}

.login {
  background: url("../img/bg.jpg") left center;
  background-size: cover;
  height: 100vh;
}
.login .row {
  height: 100%;
}

.login__form-container {
  display: flex;
  height: 100%;
  flex-direction: column;
  background: white;
  padding-top: 128px;
}

.login__form-container__logo {
  max-width: 300px;
  margin-bottom: 64px;
}

.btn.btn-secondary.btn-lg.logout {
  background: #E62685;
  color: white;
  font-weight: bold;
}
</pre></body></html>