/** Shopify CDN: Minification failed

Line 22:13 Expected identifier but found whitespace
Line 22:15 Unexpected "{"
Line 22:24 Expected ":"
Line 23:8 Expected identifier but found whitespace
Line 23:10 Unexpected "{"
Line 23:19 Expected ":"
Line 34:10 Expected identifier but found whitespace
Line 34:12 Unexpected "{"
Line 34:21 Expected ":"
Line 34:49 Expected ":"
... and 4 more hidden warnings

**/
.ovx-floating-text {
  position: relative;
  z-index: 90;
}

.ovx-floating-text__content {
  background: {{ section.settings.background_color }};
  color: {{ section.settings.text_color }};
  padding: 1.5rem;
  width: 100%;
  max-width: 100%;
}

@media screen and (min-width: 750px) {
  .ovx-floating-text {
    position: fixed;
    bottom: 40px;
    left: 24px;
    width: {{ section.settings.desktop_width }}px;
  }
  
  .ovx-floating-text__content {
    max-width: {{ section.settings.desktop_width }}px;
  }
}

@media screen and (max-width: 749px) {
  .ovx-floating-text {
    margin: 2rem 0;
    position: static;
  }
  
  .ovx-floating-text__content {
    margin: 0 auto;
  }
}