
// STATISTICS
// --------------------------------
.sam.statistics{
  display: flex;
  flex-wrap: wrap;
  margin: 10px -30px;
}
.sam.statistics > .statistic{
  margin: 5px 30px;
}
.sam.statistics > .statistic:hover{
  text-decoration: none;
}
.sam.statistics .statistic > .value {
  color: #323A45;
  font-weight: 700;
  font-size: 24px;
  letter-spacing: -0.6px;
  text-align: center;
}
.sam.statistics .statistic > .label {
  color: #5B616B;
  font-size: 14px;
  text-align: center;
  text-transform: uppercase;
}
.sam.statistics .statistic > .value > .circular {
  display: block;
  margin: 0 auto;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  line-height: 50px;
  transition: all 0.3s ease;
}

// COLORS
.sam.statistics .green.statistic>.value>.circular {
  background: #EAF2EB;
  border: 1px solid #2E8540;
}
.sam.statistics .green.statistic:hover>.value>.circular {
  color: white;
  background: #2E8540;
}

.sam.statistics .blue.statistic>.value>.circular {
  background: #E5F0F4;
  border: 1px solid #00A6D2;
}
.sam.statistics .blue.statistic:hover>.value>.circular {
  color: white;
  background: #00A6D2;
}

.sam.statistics .red.statistic>.value>.circular {
  background: #F4E8E8;
  border: 1px solid #981B1E;
}
.sam.statistics .red.statistic:hover>.value>.circular {
  color: white;
  background: #981B1E;
}

.sam.statistics .orange.statistic>.value>.circular {
  background: #FBEBE6;
  border: 1px solid #D84009;
}
.sam.statistics .orange.statistic:hover>.value>.circular {
  color: white;
  background: #D84009;
}

.sam.statistics .grey.statistic>.value>.circular {
  background: #EEEFF0;
  border: 1px solid #AEB0B5;
}
.sam.statistics .grey.statistic:hover>.value>.circular {
  color: white;
  background: #AEB0B5;
}

.sam.statistics .yellow.statistic>.value>.circular {
  background: #FFF1D2;
  border: 1px solid #FED06A;
}
.sam.statistics .yellow.statistic:hover>.value>.circular {
  color: white;
  background: #FED06A;
}
