.payment-methods {
  display: flex;
  flex-wrap: wrap;
  margin: 33px -16px -16px;
}

@media (max-width: 575px) {
  .payment-methods {
    flex-direction: column;
  }
}

.payment-method {
  display: flex;
  align-items: center;
  width: 50%;
  padding: 16px
}

.payment-method__radio-hidden {
  position: absolute;
  left: -9999px;
  opacity: 0;
}

.payment-method__radio {
  border: 5px solid #FFFFFF;
  border-radius: 23px;
  min-width: 22px;
  width: 22px;
  height: 22px;
  box-shadow: 0 0 0 1px rgba(242, 152, 157, 0.5);
  background-color: #FFFFFF;
  visibility: hidden;
  transition-duration: 0.15s;
}

.payment-method__radio-hidden ~ .payment-method__radio {
  visibility: visible;
  cursor: pointer;
}

.payment-method__radio-hidden:checked ~ .payment-method__radio {
  background-color: #F2989D;
  cursor: default;
}

.payment-method__img-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  margin-left: 11px;
}

.payment-method__radio-hidden ~ .payment-method__img-wrapper {
  cursor: pointer;
}

.payment-method__radio-hidden:checked ~ .payment-method__img-wrapper {
  cursor: default;
}

.payment-method__img {
  pointer-events: none;
  width: 100%;
  max-width: 75px;
}

@media (max-width: 575px) {
  .payment-method__img {
    min-width: 60px;
  }
}

.payment-method__note {
  position: absolute;
  top: 100%;
  left: 0;
  margin-top: 6px;
  width: 100%;
  font-size: 15px;
  font-style: italic;
  text-align: center;
  color: #1B1E3C;
  opacity: 0.5;
}