/** Shopify CDN: Minification failed

Line 26:13 Expected identifier but found whitespace
Line 26:15 Unexpected "{"
Line 26:24 Expected ":"

**/


/* CSS from section stylesheet tags */
.vendor-brick .brick__section {
  max-height: 550px;
  overflow: hidden;
}

.vendor-brick .brick__block--images,
.vendor-brick .brick__block--text {
  width: 50%;
}

.vendor-brick .brick__section {
  display: flex;
}

.vendor-brick .vendor-brick__text {
  background: {{ section.settings.pink_bg }};
  padding: 48px 40px; /* comfortable padding on the text side */
  display: flex;
  align-items: center;
}

@media (max-width: 749px) {
  .vendor-brick .brick__section {
    flex-direction: column-reverse; /* keep text above image on mobile if desired */
    max-height: none;
  }
  .vendor-brick .brick__block--images,
  .vendor-brick .brick__block--text {
    width: 100%;
  }
  .vendor-brick .vendor-brick__text {
    padding: 32px 20px;
  }
}