/** Shopify CDN: Minification failed

Line 17:15 Expected identifier but found whitespace
Line 17:17 Unexpected "{"
Line 17:26 Expected ":"
Line 17:76 Expected ":"
Line 20:12 Unexpected "{"
Line 20:21 Expected ":"
Line 21:16 Expected identifier but found whitespace
Line 21:18 Unexpected "{"
Line 21:27 Expected ":"
Line 21:78 Expected ":"
... and 18 more hidden warnings

**/
.footer {
    margin-top: {{ section.settings.margin_top | times: 0.75 | round: 0 }}px;
  }

  .section-{{ section.id }}-padding {
    padding-top: {{ section.settings.padding_top | times: 0.75 | round: 0 }}px;
    padding-bottom: {{ section.settings.padding_bottom | times: 0.75 | round: 0 }}px;
  }

  .footer-information-bar{
      background: #1a1a1a;
      color: #000;
      padding: 10px;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 10px;
  }

  .footer-information-bar a {
    color: #fff;
    text-transform: uppercase;
    text-decoration: none;
    background: #1a1a1a;
  }

  .footer-information-bar .sep{
    display:none;
  }

  .footer-information-bar a b{
    margin-right: 10px;
    display: inline-block;
  }

  @media screen and (min-width: 750px) {

      .footer-information-bar{
          flex-direction: row; 
      }

     .footer-information-bar .sep{
    display:inline-block;
  }

    
    .footer {
      margin-top: {{ section.settings.margin_top }}px;
    }

    .section-{{ section.id }}-padding {
      padding-top: {{ section.settings.padding_top }}px;
      padding-bottom: {{ section.settings.padding_bottom }}px;
    }
  }