.stats-bar-old {
  display: none;
}


/* stats bar (desktop) */
.stats-bar {
  height: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;  /* always stay on one line */
  gap: clamp(12px, 3vw, 40px); /* shrinks with viewport */
  overflow: hidden;
}

/* each item */
.stats-bar .stat-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  text-align: center;
  flex: 0 0 auto;
}

/* vertical separators */
.stat-item-separator {
  width: 1px;
  height: 100%;
  border-left: 1px solid white;
}

/* icons */
.stats-bar .stat-item img {
  max-height: clamp(20px, 3vw, 40px); /* scales with viewport */
  margin-right: clamp(6px, 1.5vw, 16px);
  height: auto;
  width: auto;
  display: block;
}

/* text */
.stats-bar .stat-item span {
  font-size: clamp(14px, 1.5vw, 20px); /* shrink with viewport */
  font-weight: 500;
  line-height: 1.2;
  color: #fff;
  text-align: left;
}

/* big numbers */
.stats-bar-mobile-nums {
  font-size: clamp(18px, 2vw, 24px) !important;
  font-weight: 700;
  color: #95D22E;
  line-height: 1;
  margin-right: 5px;
}

.bright-stats .stat-item span {
	color: #06274F;
}

.bright-stats .stat-item-separator {
	border-left: 1px solid #06274F;
}


/* STAT BAR MOBILE */

 

  @media (max-width: 768px) {
	  
	.stats-bar {
    flex-direction: column;   /* vertical layout */
    align-items: center;
    justify-content: center;
    gap: 24px;                /* spacing between items */
    height: auto;
    padding: 20px 0;
  }
	  
	  
	  
  .stats-bar .stat-item {
    flex-direction: row;
    justify-content: center;
    align-items: center;   /* align children to the bottom */
    height: 40px;
    padding: 0 12px;
    text-align: left;
  }


	.bsl {
		 align-items: baseline !important;
		 
	}

  .stats-bar .stat-item img {
    height: 36px !important;
    width: auto !important;
    max-height: none !important;
    max-width: none !important;
    display: inline-block !important;
    object-fit: contain !important;
	margin-right: 13px;
  }



.stats-bar .stat-item span {
    display: inline-block;
	font-weight: 500;
	font-size: 16px;
	color: #fff;
	text-align: left;
	line-height: normal;
}
  
  .stats-bar-mobile-nums {
	font-size: 24px !important;
	font-weight: 700 !important;
	color: #95D22E !important;
	padding: 0;
	margin-right: 5px;
	  
  }



  /* horizontal separator between items */
  .stat-item-separator {
    width: 70px;
    height: 1px;
    border-left: none;
    border-top: 1px solid currentColor;
    margin: 0 auto;
	color: white !important;
  }
}
