/** Shopify CDN: Minification failed

Line 33:84 Expected identifier but found "!"
Line 39:0 Unexpected "}"

**/
.custom-payment-grid {
    display: grid; 
    grid-template-columns: repeat(3, 1fr); 
    justify-content: center;
    align-items: center; 
    gap: 1rem; 
    margin: 0 auto;
    padding: .2rem 0;
}

.custom-payment-grid__item {
    display: flex; 
    justify-content: center; 
    align-items: center; 
    text-align: center;
    padding: .2rem; 
}

.custom-payment-grid__item img {
    max-width: 100px;
    height: auto; 
}

.list-payment {
    display: flex;
    flex-wrap: wrap;
    justify-content: center !important; /* This centers the content horizontally */ !
    margin: -0.5rem 0; /* Adjust margins as needed */
    padding-top: 1rem; /* Keep your existing padding */
    padding-left: auto; /* This is unnecessary for centering and can be removed */
}

}

@media screen and (min-width: 750px) {
  .list-payment {
    justify-content: flex-end;
    margin: -0.5rem;
    padding-top: 0;
  }
}

.list-payment__item {
  align-items: center;
  display: flex;
  padding: 0.5rem;
}