.stat-summary-bg {
  background: #257a3e;
  padding: 17px 0;
}

.stat-summary-list {
  overflow: hidden;
  display: flex;
  flex-direction: row-reverse;
  gap: 17px;
  align-items: baseline;
  justify-content: space-around;
  animation: slide-in-right 1.5s cubic-bezier(0.55, 0.055, 0.675, 0.19) 0.3s both;
}

@keyframes slide-in-right {
  0% {
    transform: translateY(100%);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

.stat-summary-item {
  width: 30%;
  display: flex;
  flex-direction: row-reverse;
  gap: 17px;
  align-items: center;
  justify-content: center;
}

.stat-summary-icon {
  width: 20%;
}

.stat-summary-icon svg {
  width: 100%;
  fill: #000000;
}

.stat-summary-data {
  display: flex;
  flex-direction: column;
  gap: 5px;
  align-items: center;
}

.ssd-num {
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 2px;
  color: #000000;
}

.ssd-txt {
  font-size: 14px;
  font-weight: 700;
  color: #000000;
}
