.gt-points-card {
  margin-top: 30px;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #4e73df, #1cc88a);
  padding: 24px;
  border-radius: 14px;
  color: #fff;
  /*box-shadow: 0 8px 20px rgba(0,0,0,0.15);*/
  margin-bottom: 30px;
  animation: fadeInPointsCard 0.6s ease;
}

.gt-points-icon {
  /*font-size: 42px;*/
  margin-right: 20px;
  opacity: 0.9;
}
.gt-points-card .gt-points-icon i {
    font-size: 32px;
    display: inline-block;
    line-height: 1;
}

.gt-points-info .gt-points-label {
  font-size: 15px;
  letter-spacing: 1.2px;
  margin: 0;
  opacity: 0.9;
}

.gt-points-info .gt-points-value {
  font-size: 32px;
  font-weight: 700;
  margin: 4px 0 0;
}

@keyframes fadeInPointsCard {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}
