.cards-ctnr {
  width: 100%;
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-evenly;
  align-items: center;
  min-height: 130px;
  margin-bottom: 30px;
}
.cards-ctnr .card {
  position: relative;
  background: var(--color-white);
  border-radius: 20px;
  margin-right: 15px;
  height: 100%;
  flex: 1;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  box-shadow: 0px 4px 15px 0px var(--color-card-shadow);
  border: 4px solid var(--color-white);
}
.cards-ctnr .card .icon {
  transition: opacity 0.25s ease-in-out;
  opacity: 0.5;
}
.cards-ctnr .card:nth-child(1) .icon {
  color: var(--color-accent-1);
}
.cards-ctnr .card:nth-child(1) .side-text span {
  color: var(--color-accent-1);
}
.cards-ctnr .card:nth-child(2) .icon {
  color: var(--color-accent-2);
}
.cards-ctnr .card:nth-child(2) .side-text span {
  color: var(--color-accent-2);
}
.cards-ctnr .card:nth-child(3) .icon {
  color: var(--color-accent-3);
}
.cards-ctnr .card:nth-child(3) .side-text span {
  color: var(--color-accent-3);
}
.cards-ctnr .card .title {
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  line-height: 1.33333;
  color: var(--color-dark);
  position: relative;
}
.cards-ctnr .card .title.noIcon:before {
  content: "";
  display: block;
  width: 14px;
  height: 12px;
  position: absolute;
  top: 3px;
  left: 0;
  background: var(--color-primary);
  border-radius: 5px;
}
.cards-ctnr .card .title .icon {
  color: var(--color-primary);
  position: absolute;
  top: 3px;
  left: -2px;
  font-size: 23px;
}
.cards-ctnr .card .value {
  font-size: 35px;
  line-height: 1.22222;
  font-weight: bold;
  letter-spacing: -1px;
  color: var(--color-dark);
  margin-left: 30px !important;
  margin-right: 30px !important;
  margin-top: 5px;
  margin-bottom: 5px;
}
.cards-ctnr .card .value .number {
  font-size: 35px;
}
.cards-ctnr .card .subline {
  font-size: 14px;
  font-weight: 400;
}
.cards-ctnr .card .subline .bigSubline {
  font-size: 20px;
  font-weight: 700;
  margin-right: 2px;
  position: relative;
  top: 1px;
}
.cards-ctnr .card:last-of-type {
  margin-right: 0;
}
.cards-ctnr .card.clickable {
  cursor: pointer;
}
.cards-ctnr .card.highlight {
  border: 4px solid var(--color-primary);
}
.cards-ctnr .card.highlight .icon {
  opacity: 1;
}
.cards-ctnr .card.highlight .side-text span {
  font-weight: 600;
  opacity: 1;
}
.cards-ctnr .card.highlight:nth-child(1) {
  border-color: var(--color-accent-1);
}
.cards-ctnr .card.highlight:nth-child(2) {
  border-color: var(--color-accent-2);
}
.cards-ctnr .card.highlight:nth-child(3) {
  border-color: var(--color-accent-3);
}
.cards-ctnr .card .side-text {
  position: absolute;
  justify-content: center;
  align-items: center;
  pointer-events: none;
}
.cards-ctnr .card .side-text.icon {
  left: unset;
  right: 14px;
  font-size: 24px;
}
.cards-ctnr .card .side-text span {
  transform: rotate(270deg);
  transition: opacity 0.25s ease-in-out;
  position: absolute;
  margin-left: -85%;
}
.cards-ctnr.col {
  height: 100%;
  flex-flow: column nowrap;
}
.cards-ctnr.col .card {
  margin-right: 0;
  margin-bottom: 15px;
  width: 100%;
}
.cards-ctnr.col .card:last-of-type {
  margin-bottom: 0;
}

div.card-v2 {
  background: var(--color-white);
  box-shadow: 0px 4px 15px 0px var(--color-card-shadow);
  border-radius: 20px;
  min-height: 80px;
  font-family: Poppins;
  font-style: normal;
}
div.card-v2 p.stat {
  font-weight: 600;
  font-size: 40px;
  line-height: 60px;
}
div.card-v2 p.label {
  font-size: 12px;
  line-height: 14px;
}
div.card-v2 .header-section {
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 60px;
  padding: 15px 20px 15px 30px;
  margin-bottom: 30px;
  border-bottom: 1px solid var(--color-border-dark);
}
div.card-v2 .header-section h1 {
  font-weight: 600;
  font-size: 24px;
  line-height: 32px;
}
div.card-v2 .main-stats-section {
  justify-content: space-around;
  align-items: center;
}
div.card-v2 .main-stats-section p.stat {
  line-height: 60px;
}
div.card-v2 .main-stats-section p.subStat {
  line-height: 15px;
}
div.card-v2 .one-stat-section {
  justify-content: center;
  align-items: flex-end;
}
div.card-v2 .one-stat-section p.stat {
  line-height: 34px;
  margin-right: 10px;
}
div.card-v2 .main-stats-section, div.card-v2 .one-stat-section {
  display: flex;
  flex-flow: row nowrap;
  width: 100%;
  margin-bottom: 30px;
  text-align: center;
}
div.card-v2 .main-stats-section p.stat, div.card-v2 .one-stat-section p.stat {
  font-weight: 600;
  font-size: 40px;
}
div.card-v2 .main-stats-section p.label, div.card-v2 .one-stat-section p.label {
  font-size: 12px;
  line-height: 14px;
}
div.card-v2 .gauge-section {
  display: flex;
  flex-flow: column nowrap;
  align-items: center;
  align-content: center;
}
div.card-v2 .gauge-section canvas {
  transform: rotate(-161deg);
}
div.card-v2 .gauge-section h2 {
  opacity: 0;
}
div.card-v2 .gauge-section div.center-of-gauge {
  width: 64px;
  height: 64px;
  border-radius: 32px;
  background: var(--color-white);
  box-shadow: 0px 8.38427px 17.2617px rgba(0, 0, 0, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-weight: 600;
  font-size: 20px;
  line-height: 30px;
  position: relative;
  top: -105px;
}
div.card-v2 .gauge-section p {
  margin-top: -70px;
  font-size: 12px;
  line-height: 14px;
}
div.card-v2 .doughnut-chart-section {
  display: flex;
  flex-flow: nowrap;
  justify-content: space-evenly;
  align-items: center;
  width: 100%;
  margin-bottom: 30px;
}
div.card-v2 .doughnut-chart-section div.stats-side {
  display: flex;
  flex-flow: row wrap;
  align-items: flex-start;
  justify-content: space-evenly;
  transform: translateX(-35px);
}
div.card-v2 .doughnut-chart-section div.stats-side > div {
  flex: 1 0 35%;
  margin-right: 30px;
  margin-bottom: 20px;
}
div.card-v2 .doughnut-chart-section div.stats-side p.stat {
  font-size: 32px;
  line-height: 50px;
}
div.card-v2 .doughnut-chart-section div.stats-side div.legend-pip {
  width: 20px;
  height: 12px;
  border-radius: 14px;
  margin-bottom: 8px;
}
div.card-v2 .no-items-section {
  width: 100%;
  font-weight: 600;
  font-size: 18px;
  line-height: 22px;
  text-align: center;
  padding-left: 20px;
  padding-right: 20px;
  color: var(--color-light);
  margin-bottom: 20px;
}
div.card-v2 .add-button-section {
  display: flex;
  align-items: center;
  justify-content: space-around;
  margin-bottom: 30px;
}
div.card-v2 .basic-vert-bars-section {
  width: 100%;
  padding-left: 30px;
  padding-right: 20px;
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-around;
  align-items: center;
}
div.card-v2 .basic-vert-bars-section .text-side {
  display: flex;
  flex-flow: row nowrap;
  align-items: baseline;
}
div.card-v2 .basic-vert-bars-section .text-side p.stat {
  margin-right: 8px;
}

.table-container {
  background: var(--color-white) !important;
  box-shadow: 0px 4px 15px 0px var(--color-card-shadow);
  border-radius: 20px;
  padding: 35px 50px;
  overflow: hidden;
}
.table-container.has-range-picker {
  min-height: 415px;
}
.table-container .table-top {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  position: relative;
  margin-bottom: 30px;
}
.table-container .table-top > button {
  margin-left: 10px;
}
.table-container .table-top > button:first-of-type {
  margin-left: 0;
}
.table-container .table-top .table-header {
  display: flex;
  flex-flow: row nowrap;
  justify-content: flex-start;
  align-items: center;
}
.table-container .table-top .table-header h1 {
  font-family: "Poppins";
  font-weight: 600;
  font-size: 22px;
  margin-right: 5px;
}
.table-container .table-top .table-header > button.table-opt {
  height: 25px;
  margin: 0 5px;
  max-width: max-content;
  min-width: max-content;
  padding: 5px 10px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 600;
  color: var(--color-light);
}
.table-container .table-top .table-header > button.table-opt.selected, .table-container .table-top .table-header > button.table-opt:hover {
  background: var(--color-primary);
  color: var(--color-white);
}

.content-row {
  display: flex;
  flex-flow: row wrap;
  margin-bottom: 50px;
}
.content-row .table-container {
  justify-content: space-evenly;
  height: 100%;
}

button.table-opt {
  height: 25px;
  margin: 0 5px;
  max-width: max-content;
  min-width: max-content;
  padding: 5px 10px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 600;
  color: var(--color-light);
}
button.table-opt.selected, button.table-opt:hover {
  background: var(--color-primary);
  color: var(--color-white);
}

/*# sourceMappingURL=clsheet-material.css.map */
