/** Shopify CDN: Minification failed

Line 22:18 Unexpected "{"
Line 22:27 Expected ":"
Line 32:18 Unexpected "{"
Line 32:27 Expected ":"
Line 38:18 Unexpected "{"
Line 38:27 Expected ":"
Line 43:18 Unexpected "{"
Line 43:27 Expected ":"
Line 47:18 Unexpected "{"
Line 47:27 Expected ":"
... and 42 more hidden warnings

**/


/* CSS from section stylesheet tags */
/* ---------------------- */
/* DESKTOP / TABLET */
/* ---------------------- */
#shopify-section-{{ section.id }} .app-banner__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 50px;
}

#shopify-section-{{ section.id }} .side-image {
  display: flex;
  align-items: center;
  justify-content: center;
}

#shopify-section-{{ section.id }} .phone {
  overflow: visible;
  border-radius: 18px;
}

#shopify-section-{{ section.id }} .phone-left {
  transform: rotate(-5deg);
}

#shopify-section-{{ section.id }} .phone-right {
  transform: rotate(5deg);
}

#shopify-section-{{ section.id }} .phone-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

#shopify-section-{{ section.id }} .center-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  min-height: {{ section.settings.card_height }}px;
}

/* ---------------------- */
/* MOBILE FIX FINAL VERSION */
/* ---------------------- */
@media (max-width: 768px) {

  /* Reduce banner height */
  #shopify-section-{{ section.id }} .app-banner {
    padding: 10px 0 !important;
  }

  /* Side-by-side on mobile */
  #shopify-section-{{ section.id }} .app-banner__inner {
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 0 12px;
  }

  /* Hide right phone on mobile */
  #shopify-section-{{ section.id }} .side-image--right {
    display: none !important;
  }

  /* Show left phone bigger & overflow */
  #shopify-section-{{ section.id }} .phone {
    width: {{ section.settings.card_width | times: 1.35 }}px;   /* Bigger */
    height: {{ section.settings.card_height | times: 1.35 }}px; /* Bigger */
    margin-top: -{{ section.settings.card_overlap | times: 1.2 }}px;   /* More cut top */
    margin-bottom: -{{ section.settings.card_overlap | times: 1.2 }}px; /* More cut bottom */
    transform: rotate(-3deg);
  }

  /* Text to the right */
  #shopify-section-{{ section.id }} .center-content {
    width: 100%;
    align-items: flex-start;
    text-align: left;
    min-height: auto;
  }

  /* Slightly smaller title on mobile */
  #shopify-section-{{ section.id }} .center-content h2 {
    font-size: {{ section.settings.heading_size | minus: 2 }}px;
    line-height: 1.2;
  }
}