/** Shopify CDN: Minification failed

Line 39:14 Expected identifier but found whitespace
Line 39:16 Unexpected "{"
Line 39:25 Expected ":"
Line 39:52 Expected ":"
Line 44:14 Expected identifier but found whitespace
Line 44:16 Unexpected "{"
Line 44:25 Expected ":"
Line 44:52 Expected ":"
Line 53:14 Expected identifier but found whitespace
Line 53:16 Unexpected "{"
... and 2 more hidden warnings

**/


/* CSS from section stylesheet tags */
.survey-section-wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 2rem;
}
.survey-container {
  width: 100%;
}
.survey-entry {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.survey-text {
  flex: 1;
}
@media (max-width: 991px) {
  .survey-container {
    max-width: {{ section.settings.width_tablet }}px !important;
  }
}
@media (max-width: 767px) {
  .survey-container {
    max-width: {{ section.settings.width_mobile }}px !important;
  }
  .survey-entry {
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (min-width: 992px) {
  .survey-container {
    max-width: {{ section.settings.width_desktop }}px !important;
  }
}