/** Shopify CDN: Minification failed

Line 17:16 Expected identifier but found whitespace
Line 17:18 Unexpected "{"
Line 17:27 Expected ":"
Line 17:53 Expected ":"
Line 18:19 Expected identifier but found whitespace
Line 18:21 Unexpected "{"
Line 18:30 Expected ":"
Line 18:59 Expected ":"

**/


/* CSS from section stylesheet tags */
.cart-footer {
    padding-top: {{ section.settings.padding_top }}px;
    padding-bottom: {{ section.settings.padding_bottom }}px;
    background-color: var(--color-background-{{ section.settings.color_scheme }});
  }

  .payment-warning {
    color: #cc0000;
    margin: 1em 0;
    font-weight: bold;
    background-color: #ffe8e8;
    padding: 1em;
    border-radius: 5px;
  }

  .payment-options-wrapper {
    display: flex;
    gap: 1.5em;
    margin: 1em 0;
    flex-wrap: wrap;
  }

  .payment-option {
    cursor: pointer;
    border: 2px solid #ccc;
    padding: 1em;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: border-color 0.3s, background-color 0.3s;
    max-width: 150px;
    flex: 1;
  }

  .payment-option img {
    margin-bottom: 0.5em;
  }

  .payment-option.active {
    border-color: #0070ba;
    background-color: #f0f8ff;
  }

  #custom_checkout_button:disabled {
    opacity: 0.5;
    pointer-events: none;
  }