/** Shopify CDN: Minification failed

Line 22:11 Expected identifier but found whitespace
Line 22:13 Unexpected "{"
Line 22:22 Expected ":"
Line 22:51 Expected ":"
Line 32:14 Expected identifier but found whitespace
Line 32:16 Unexpected "{"
Line 32:25 Expected ":"
Line 32:49 Expected ":"
Line 37:14 Expected identifier but found whitespace
Line 37:16 Unexpected "{"
... and 2 more hidden warnings

**/


/* CSS from section stylesheet tags */
.info-row {
    display: flex;
    justify-content: space-between;
    margin: {{ section.settings.section_margin }}px;
    gap: 20px;
  }

  .info-column {
    flex: 1;
    text-align: center;
  }

  .info-icon {
    font-size: {{ section.settings.icon_size }}px;
    color: #333;
  }

  .info-text {
    font-size: {{ section.settings.text_size }}px;
    margin-top: 10px;
    color: #333;
  }

  @media (max-width: 768px) {
    .info-row {
      flex-direction: column;
      align-items: center;
    }
  }