.alert-debug {
  background-color: #fff;
  border-color: #d6e9c6;
  color: #000;
}

.alert-error {
  background-color: #f2dede;
  border-color: #eed3d7;
  color: #b94a48;
}

.main-table {
  width: 100%;
}

.main-pagination {
  margin-top: 10px;
  float: right;
}

.limited-text {
  white-space: nowrap;
  width: 400px;
  overflow: hidden;
  text-overflow: ellipsis;
}

#message-container {
  max-height: 400px;
  overflow-y: auto;
}

/* Start by setting display:none to make this hidden.
   Then we position it in relation to the viewport window
   with position:fixed. Width, height, top and left speak
   for themselves. Background we set to 80% white with
   our animation centered, and no-repeating */
.modal-loading {
  display: none;
  position: fixed;
  z-index: 999999;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: rgba(255, 255, 255, 0.8) url("http://i.stack.imgur.com/FhHRx.gif") 50% 50% no-repeat;
}

/* When the body has the loading class, we turn
   the scrollbar off with overflow:hidden */
body.loading .modal-loading {
  overflow: hidden;
}

/* Anytime the body has the loading class, our
   modal element will be visible */
body.loading .modal-loading {
  display: block;
}

.load-more {
  margin: auto;
  align-items: center;
  width: 100%;
  padding: 1%;
  background: none;
  border: none;
  font-weight: bold;
  color: blue;
}

.oneloop-card {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
  padding: 24px;
  font-family: "Source Sans Pro", -apple-system, BlinkMacSystemFont, sans-serif;
  color: #1E2530;
}

.oneloop-stat {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.oneloop-stat__body {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.oneloop-stat__label {
  font-size: 14px;
  color: #6C7685;
  margin: 0;
}
.oneloop-stat__value {
  font-size: 28px;
  font-weight: 700;
  margin: 0;
}
.oneloop-stat__icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.oneloop-stat__icon svg {
  width: 24px;
  height: 24px;
}
.oneloop-stat__icon--primary {
  background: #EDF0FF;
  color: #3F5CFF;
}
.oneloop-stat__icon--success {
  background: #E6F7EC;
  color: #07C054;
}
.oneloop-stat__icon--warn {
  background: #FFF4E0;
  color: #E39B1F;
}
.oneloop-stat__icon--danger {
  background: #FDE8E8;
  color: #FD5656;
}

.oneloop-chart {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.oneloop-chart__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.oneloop-chart__title {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  color: #3F5CFF;
}
.oneloop-chart__period {
  border: 1px solid #E2E2E2;
  border-radius: 8px;
  padding: 6px 10px;
  font-size: 13px;
  color: #1E2530;
  background: #fff;
}
.oneloop-chart__canvas {
  width: 100%;
}
.oneloop-chart__legend {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px 16px;
  font-size: 14px;
}
.oneloop-chart__legend li {
  display: flex;
  align-items: center;
  gap: 8px;
}
.oneloop-chart__legend strong {
  margin-left: auto;
  font-weight: 600;
}
.oneloop-chart__swatch {
  width: 12px;
  height: 12px;
  border-radius: 3px;
  display: inline-block;
}
.oneloop-chart--donut .oneloop-chart__canvas {
  height: 357px;
}
.oneloop-chart--line .oneloop-chart__canvas {
  height: 354px;
}

.ol-convo {
  background: #fff;
  border: 1px solid #E2E2E2;
  border-radius: 14px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
  font-family: "Source Sans Pro", -apple-system, BlinkMacSystemFont, sans-serif;
  color: #1E2530;
  margin-bottom: 24px;
  overflow: hidden;
}
.ol-convo__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px 14px;
  border-bottom: 1px solid #E2E2E2;
}
.ol-convo__title {
  display: flex;
  align-items: center;
  gap: 8px;
}
.ol-convo__name {
  font-size: 16px;
  font-weight: 700;
}
.ol-convo__badge {
  background: #ECE9FF;
  color: #5D45DB;
  font-size: 12px;
  font-weight: 600;
  padding: 2px 10px;
  border-radius: 999px;
  line-height: 1.4;
}
.ol-convo__viewall {
  color: #5D45DB;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
}
.ol-convo__viewall:hover {
  text-decoration: underline;
}
.ol-convo__scroll {
  overflow-x: auto;
}
.ol-convo__table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
}
.ol-convo__table th, .ol-convo__table td {
  padding: 14px 16px;
  text-align: left;
  vertical-align: middle;
  white-space: nowrap;
}
.ol-convo__table thead th {
  background: #fff;
  color: #6C7685;
  font-size: 13px;
  font-weight: 600;
  border-bottom: 1px solid #E2E2E2;
}
.ol-convo__table thead th .text-besides-icon {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.ol-convo__table thead th p {
  margin: 0;
}
.ol-convo__table thead th a {
  color: inherit;
  text-decoration: none;
}
.ol-convo__table tbody tr + tr td {
  border-top: 1px solid #F1F1F4;
}
.ol-convo__table tbody tr:hover {
  background: #FAFAFC;
}
.ol-convo__cust {
  font-weight: 600;
  color: #1E2530;
}
.ol-convo__phone {
  color: #6C7685;
  font-size: 12px;
  margin-top: 2px;
}
.ol-convo__cell-msg {
  max-width: 220px;
}
.ol-convo__msg {
  display: inline-block;
  max-width: 220px;
  color: #1E2530;
  text-decoration: none;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  vertical-align: bottom;
}
.ol-convo__msg--unread {
  font-weight: 700;
}
.ol-convo__msg:hover {
  color: #5D45DB;
}
.ol-convo__cell-meta {
  color: #6C7685;
}
.ol-convo__cell-action {
  display: flex;
  gap: 8px;
  align-items: center;
}
.ol-convo__act-form {
  display: inline-block;
  margin: 0;
}
.ol-convo__empty {
  text-align: center;
  color: #6C7685;
  padding: 24px 0;
}

.ol-pill {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.4;
}
.ol-pill--status {
  background: #FFF4D6;
  color: #B97D08;
}
.ol-pill--status.ol-pill--converted {
  background: #E6F7EC;
  color: #07C054;
}
.ol-pill--status.ol-pill--closed {
  background: #FDE8E8;
  color: #FD5656;
}
.ol-pill--read.ol-pill--read {
  background: #E6F7EC;
  color: #07C054;
}
.ol-pill--read.ol-pill--unread {
  background: #F1F1F4;
  color: #6C7685;
}

.ol-btn {
  display: inline-block;
  padding: 6px 16px;
  font-size: 13px;
  font-weight: 600;
  border-radius: 8px;
  border: 0;
  cursor: pointer;
  line-height: 1.4;
}
.ol-btn--danger {
  background: #FD5656;
  color: #fff;
}
.ol-btn--danger:hover {
  background: #ED3636;
}
.ol-btn--success {
  background: #07C054;
  color: #fff;
}
.ol-btn--success:hover {
  background: #06A847;
}

.ol-conv-page {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 358px;
  gap: 16px;
  font-family: "Source Sans Pro", -apple-system, BlinkMacSystemFont, sans-serif;
  color: #1E2530;
}
.ol-conv-page__heading {
  grid-column: 1/-1;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.ol-conv-page__heading h1 {
  font-size: 20px;
  font-weight: 700;
  margin: 0;
}
.ol-conv-page__heading a.back {
  color: #1E2530;
  text-decoration: none;
  width: 34px;
  height: 34px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.ol-conv-page__heading a.back:hover {
  background: #EDF0FF;
}
.ol-conv-page__heading a.back svg {
  width: 20px;
  height: 20px;
}
.ol-conv-page__sidebar {
  grid-column: 2;
  grid-row: 2;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.ol-conv-page__main {
  grid-column: 1;
  grid-row: 2;
  display: flex;
  flex-direction: column;
  min-width: 0;
}
@media (max-width: 992px) {
  .ol-conv-page {
    grid-template-columns: 1fr;
  }
  .ol-conv-page .ol-conv-page__sidebar,
  .ol-conv-page .ol-conv-page__main {
    grid-column: auto;
    grid-row: auto;
  }
}

.ol-section-card {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.ol-section-card--flush {
  padding: 0;
  gap: 0;
}
.ol-section-card__title {
  color: #3F5CFF;
  font-size: 18px;
  font-weight: 700;
  line-height: 20px;
  letter-spacing: -0.36px;
  margin: 0;
}
.ol-section-card__rows {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.ol-section-card__row {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.ol-section-card__row--inline {
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.ol-section-card__label {
  font-size: 14px;
  color: #6C7685;
  font-weight: 400;
  margin: 0;
}
.ol-section-card__value {
  font-size: 16px;
  font-weight: 700;
  color: #1E2530;
  margin: 0;
  word-break: break-word;
}
.ol-section-card__divider {
  border: 0;
  border-top: 1px solid #E2E2E2;
  margin: 0;
}
.ol-section-card__link {
  display: inline-block;
  color: #3F5CFF;
  font-size: 14px;
  font-weight: 400;
  background: none;
  border: 0;
  padding: 0;
  cursor: pointer;
  text-decoration: none;
}
.ol-section-card__link:hover {
  text-decoration: underline;
}
.ol-section-card__link--danger {
  color: #FD5656;
}
.ol-section-card__link--danger:hover {
  color: #ED3636;
}
.ol-section-card__sub-status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 16px;
  font-weight: 700;
}
.ol-section-card__cart-link {
  display: flex;
  align-items: flex-start;
  gap: 6px;
}
.ol-section-card__cart-link a {
  color: #1E2530;
  font-size: 14px;
  word-break: break-all;
  flex: 1;
  overflow: hidden;
  text-overflow: ellipsis;
}
.ol-section-card__cart-link a:hover {
  color: #3F5CFF;
}
.ol-section-card__items {
  display: flex;
  align-items: flex-start;
  gap: 6px;
}
.ol-section-card__items-qty {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 8px;
  background: #F5F5F5;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px;
  font-size: 14px;
  font-weight: 400;
  color: #1E2530;
}
.ol-section-card__items-name {
  font-size: 16px;
  font-weight: 700;
  margin: 0;
  color: #1E2530;
  flex: 1;
}
.ol-section-card__actions {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

.ol-history {
  display: flex;
  flex-direction: column;
  height: calc(100vh - 180px);
  min-height: 600px;
  overflow: hidden;
  border-radius: 14px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
  background: #fff;
}
.ol-history__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px;
  background: #fff;
  border-top-left-radius: 14px;
  border-top-right-radius: 14px;
}
.ol-history__title {
  color: #3F5CFF;
  font-size: 18px;
  font-weight: 700;
  line-height: 20px;
  letter-spacing: -0.36px;
  margin: 0;
}
.ol-history__body {
  flex: 1;
  overflow-y: auto;
  padding: 16px 12px;
  background: #F9F9F9;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.ol-history__body#message-container {
  max-height: none;
}
.ol-history__date {
  align-self: center;
  background: #F5F5F5;
  color: #1E2530;
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
  padding: 8px 10px;
  border-radius: 999px;
  margin: 0;
}
.ol-history__footer {
  padding: 16px;
  display: flex;
  align-items: flex-end;
  gap: 10px;
  background: #fff;
  margin: 0;
  border-bottom-left-radius: 14px;
  border-bottom-right-radius: 14px;
}
.ol-history__loadmore {
  align-self: center;
  background: #fff;
  border: 1px solid #E2E2E2;
  color: #6C7685;
  font-size: 13px;
  padding: 6px 16px;
  border-radius: 999px;
  cursor: pointer;
}
.ol-history__loadmore:hover {
  color: #1E2530;
}

.ol-templates-btn {
  background: #FFA319;
  color: #fff;
  padding: 9px 16px;
  border-radius: 8px;
  border: 0;
  font-size: 14px;
  font-weight: 600;
  line-height: 18px;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(255, 163, 25, 0.3);
}
.ol-templates-btn:hover {
  background: #E89110;
}

.ol-bubble-row {
  display: flex;
}
.ol-bubble-row--out {
  justify-content: flex-end;
}

.ol-bubble {
  position: relative;
  display: inline-block;
  max-width: min(360px, 100%);
  min-width: 96px;
  padding: 12px;
  padding-bottom: 28px;
  border-radius: 12px;
  font-size: 16px;
  line-height: 22px;
  word-wrap: break-word;
  white-space: pre-wrap;
  background: #fff;
  color: #1E2530;
  border: 1px solid #E2E2E2;
  border-bottom-left-radius: 0;
}
.ol-bubble--out {
  background: #3F5CFF;
  color: #fff;
  border-color: #3F5CFF;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 12px;
}
.ol-bubble__time {
  position: absolute;
  bottom: 6px;
  right: 12px;
  display: block;
  font-size: 10px;
  line-height: 12px;
  opacity: 0.85;
  color: inherit;
}

.ol-reply {
  flex: 1;
}
.ol-reply__input {
  width: 100%;
  min-height: 56px;
  max-height: 160px;
  overflow-y: auto;
  resize: none;
  border: 1px solid #3F5CFF;
  border-radius: 12px;
  padding: 12px;
  font-size: 16px;
  font-family: inherit;
  line-height: 20px;
  letter-spacing: -0.32px;
  color: #000;
  background: #fff;
}
.ol-reply__input:focus {
  outline: none;
  border-color: #3F5CFF;
  box-shadow: 0 0 0 3px rgba(63, 92, 255, 0.15);
}

.ol-send-btn {
  background: none;
  border: 0;
  cursor: pointer;
  color: #3F5CFF;
  padding: 8px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.ol-send-btn:hover {
  background: #EDF0FF;
}
.ol-send-btn svg {
  width: 24px;
  height: 24px;
}

.ol-check {
  color: #07C054;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.ol-section-card__actions .ol-btn {
  padding: 8px 12px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.2;
}
.ol-section-card__actions .ol-btn--danger {
  background: #FD5656;
}
.ol-section-card__actions .ol-btn--danger:hover {
  background: #ED3636;
}
.ol-section-card__actions .ol-btn--success {
  background: #07C054;
}
.ol-section-card__actions .ol-btn--success:hover {
  background: #06A847;
}

.ol-pill--status.ol-pill--new {
  background: #EDF0FF;
  color: #3F5CFF;
}

.ol-pill--status.ol-pill--contacted {
  background: #ECE9FF;
  color: #5D45DB;
}

.ol-pill--status.ol-pill--failed {
  background: #FDE8E8;
  color: #FD5656;
}

.dashboard-card__wrapper {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
@media (max-width: 992px) {
  .dashboard-card__wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 576px) {
  .dashboard-card__wrapper {
    grid-template-columns: 1fr;
  }
}

.dashboard-charts__wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 16px;
}
@media (max-width: 992px) {
  .dashboard-charts__wrapper {
    grid-template-columns: 1fr;
  }
}

/*# sourceMappingURL=project.css.map */
