/** Shopify CDN: Minification failed

Line 24:10 Unexpected "{"
Line 24:19 Expected ":"
Line 25:14 Expected identifier but found whitespace
Line 25:16 Unexpected "{"
Line 25:25 Expected ":"
Line 25:51 Expected ":"
Line 26:17 Expected identifier but found whitespace
Line 26:19 Unexpected "{"
Line 26:28 Expected ":"
Line 26:57 Expected ":"
... and 4 more hidden warnings

**/
/* --- Footer Reference Style --- */

.footer-ref {
  color: #fff;
  position: relative;
  overflow: hidden;
}

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

.footer-ref__inner {
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.footer-ref__col {
  box-sizing: border-box;
}

.footer-ref__col--logo {
  flex: 1 1 20%;
  min-width: 120px;
}

.footer-ref__logo-subtext {
  display: block;
  font-size: 0.8rem;
  color: #808080;
  margin-bottom: 5px;
}

.footer-ref__col--disclaimer {
  flex: 1 1 50%;
  padding: 0 20px;
  /* you might want a translucent background inside the text box, similar to your ref */
}

.footer-ref__text-box {
    border: solid 1px #fff;
    border-radius: 4px;
    line-height: 1.4;
    margin: 6px;
    padding: 6px;
    text-align: center;
    font-size: 13px;
}

.footer-ref__col--info {
  flex: 1 1 25%;
  min-width: 150px;
  text-align: right;
  font-size: {{ section.settings.info_font_size }}px !important;
}

.footer-ref__links {
    margin-bottom: 5px;
    font-size: 14px;
}

.footer-ref__links a {
  color: inherit;
  text-decoration: none;
  margin: 0 3px;
}

.footer-ref__links a:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .footer-ref__inner {
    flex-direction: column;
    text-align: center;
  }
  .footer-ref__col--info {
    margin-top: 15px;
  }
  .footer-ref__col--logo {
    margin-bottom: 15px;
  }
}