.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 8px rgba(30, 37, 48, 0.06);
  padding: 20px 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: #1FAE56;
}
.oneloop-stat__icon--warn {
  background: #FFF4E0;
  color: #E39B1F;
}
.oneloop-stat__icon--danger {
  background: #FDE8E8;
  color: #D64545;
}

.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;
}

.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 */
