/** Shopify CDN: Minification failed

Line 17:12 Expected identifier but found whitespace
Line 17:14 Unexpected "{"
Line 17:23 Expected ":"
Line 17:53 Expected ":"
Line 29:13 Expected identifier but found whitespace
Line 29:15 Unexpected "{"
Line 29:24 Expected ":"
Line 29:49 Expected ":"
Line 30:16 Expected identifier but found whitespace
Line 30:18 Unexpected "{"
... and 10 more hidden warnings

**/
.app-promo {
  max-width: {{ section.settings.container_width }}px; 

  width: 100%;
  background-image: url('{{ section.settings.bg_image | image_url }}');
  padding: 30px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  overflow: hidden;
  margin: 0px auto;
  border-radius: 30px;
  margin-top: {{ section.settings.margin_top }}px;
  margin-bottom: {{ section.settings.margin_bottom }}px;
}

.app-promo__content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.app-promo__heading {
  font-size: 24px;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 32px;
  margin-bottom: 8px;
  white-space: nowrap;
}

.payment-promo__description, .app-promo__description {
  font-size: {{ section.settings.description_size_desktop }}px;

  margin-bottom: 28px;
    font-weight: 500;
    letter-spacing: -.14px;
    line-height: 20px;
    max-width: 380px;
}

.app-promo__images {
  display: flex;
  gap: 4px;
  flex-wrap: nowrap;
  margin-top: 20px;
}

.app-promo__image-wrapper {
  max-width: 110px;
}

.app-promo__image-link {
  display: block;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(0,0,0,0.15);
}

.app-promo__image {
  display: block;
  width: 100%;
  height: auto;
}

.app-promo__text-images {
    display: flex;
    justify-content: space-between;
}

.qr-block {
position: relative;
}

.qr-block img {
    max-height: 120px;
    margin-right: 35px;
}

.qr-block p {
    background: #1f2226;
    border-radius: 33px;
    bottom: -11px;
    max-width: 185px;
    padding: 5px 20px;
    position: absolute;
    right: 0;
    text-align: center;
    transform: rotate(-3.809deg);
    color: #fff;
    width: max-content;
}

.payment-btn_mob {
  display: none;
}

/* Адаптивность */
@media screen and (width <= 768px) {
  .app-promo__content {
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
  }
  
  .app-promo__images {
    justify-content: left;
    margin-top: 12px;
  }

  .app-promo__image {
    max-width: 70px;
  }

  .app-promo {
    margin-top: 0px !important;
    background-image: url('{{ "promo-bg_mob.png" | asset_url }}');
    margin-inline: 16px;
    width: -webkit-fill-available;
    padding: 16px;
    margin-bottom: 64px !important;
  }
{%- if template.name contains "payment" -%}

  .app-promo__heading {
    text-align: left;
    max-width: 60%;
    white-space: wrap;
  }
{%- endif -%}

 .app-promo__heading {
    text-align: left;
    max-width: 100%;
    white-space: wrap;
    color: #fff;
  }

.app-promo__heading {
    font-size: 14px;
    line-height: 120%;
}

.payment-promo__description, .app-promo__description {
  font-size: 10px;
  margin-bottom: 7px;
    letter-spacing: -2%;
    line-height: 120%;
    text-align: left;
max-width: 180px;
color: #fff;
}

.qr-block {
    display: none;
}

.payment-btn_mob {
  display: block;
  color: #fff;
  background-color: #000;
  border-radius: 16px;
  font-size: 14px;
  line-height: 24px;
  padding-block: 4px;
  width: 170px;
  min-width: 170px;
  font-weight: 500;
}

.payment-btn_mob:hover {
  color: #fff;
}
}