/** Shopify CDN: Minification failed

Line 16:15 Expected identifier but found whitespace
Line 16:16 Unexpected "1px"
Line 16:27 Unexpected "{"
Line 16:36 Expected ":"
Line 17:18 Expected identifier but found whitespace
Line 17:19 Unexpected "1px"
Line 17:30 Unexpected "{"
Line 17:39 Expected ":"

**/
 .uvp-strip {
    width: 100%;
    padding: 20px 0;
    border-top: 1px solid {{ section.settings.divider_color }};
    border-bottom: 1px solid {{ section.settings.divider_color }};
  }

  .uvp-strip__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr) repeat(3, 2px);
    grid-template-columns: 1fr 2px 1fr 2px 1fr 2px 1fr;
    align-items: center;
    gap: 0;
  }

  .uvp-strip__item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 10px 20px;
  }

  .uvp-strip__icon-wrap {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .uvp-strip__text {
    flex: 1;
    min-width: 0;
  }

  .uvp-strip__headline {
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    line-height: 1.3;
    margin: 0 0 3px;
  }

  .uvp-strip__sublabel {
    font-size: 8px;
    line-height: 1.4;
    margin: 0;
  }

  .uvp-strip__icon-img {
    width: 26px;
    height: 26px;
    object-fit: contain;
    display: block;
  }

  .uvp-strip__divider {
    display: block;
    width: 1px;
    height: 40px;
    align-self: center;
  }

  @media (max-width: 768px) {
    .uvp-strip__inner {
      grid-template-columns: 1fr;
      gap: 0;
    }

    .uvp-strip__divider {
      display: none;
    }

    .uvp-strip__item {
      padding: 12px 0px;
    
    }

  


    .uvp-strip__icon-wrap {
      width: 40px;
      height: 40px;
    }

    .uvp-strip__headline {
      font-size: 10px;
    }

    .uvp-strip__sublabel {
      font-size: 9px;
    }
  }

  @media(max-width:1024px){
    .uvp-strip__inner{
        padding-inline:16px;
    }
  }