/** Shopify CDN: Minification failed

Line 47:8 Expected identifier but found whitespace
Line 47:10 Unexpected "{"
Line 47:19 Expected ":"
Line 55:8 Expected identifier but found whitespace
Line 55:10 Unexpected "{"
Line 55:19 Expected ":"

**/
 .sustainability-stats-section{
  width:100%;
  }

  .stats-container{
  /* max-width:1400px;
  margin:auto; */
  display:grid;
  grid-template-columns:repeat(3,1fr);
  align-items:center;
  text-align:center;
  }

  .stat-item{
  padding:30px 20px;
  position:relative;
  }

  /* divider */

  .stat-item:not(:last-child)::after{
  content:"";
  position:absolute;
  right:0;
  top:50%;
  transform:translateY(-50%);
  height:100px;
  width:1px;
  background:rgba(255,255,255,0.15);
  }

  /* number */

  .stat-number{
  font-size:56px;
  font-weight:700;
  color: {{ section.settings.number_color }};
  line-height:1.1;
  }

  /* label richtext */

  .stat-label{
  margin-top:10px;
  color: {{ section.settings.label_color }};
  }

  .stat-label p{
  font-size:11px;
  letter-spacing:3px;
  text-transform:uppercase;
  margin:0;
  }

  .stat-label strong{
  font-weight:700;
  }

  .stat-label h1,
  .stat-label h2,
  .stat-label h3{
  font-size:14px;
  margin:0;
  }

  /* responsive */

  @media screen and (max-width:768px){

  .stats-container{
  grid-template-columns:repeat(2,1fr);
  row-gap:30px;
  }

  .stat-item::after{
  display:none;
  }

  }

  @media screen and (max-width:525px){

  .stats-container{
  grid-template-columns:1fr;
  }

  .stat-number{
  font-size:40px;
  }

  }