/* line 3, scss/payment-methods-list.scss */
.payment-methods-list__wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-justify-content: space-around;
          justify-content: space-around;
  max-width: 300px;
  margin-left: auto;
  margin-right: auto;
  gap: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 40px;
  padding-bottom: 40px;
  margin-top: 20px;
  margin-bottom: 20px;
}

@media all and (min-width: 768px) {
  /* line 3, scss/payment-methods-list.scss */
  .payment-methods-list__wrapper {
    max-width: none;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
       -moz-box-pack: justify;
            justify-content: space-between;
  }
}

/* line 22, scss/payment-methods-list.scss */
.payment-methods-list__image {
  max-height: 32px;
  width: auto;
}
