.ul-pay {
    list-style-type: none;
    padding-left: 0;
  }
  
  .ul-pay li {
    display: inline-block;
  }
  
 .ul-pay input[type="radio"][id^="cb"] {
    display: none;
  }
  
 .ul-pay label {
    border: 1px solid #fff;
    padding: 10px;
    display: block;
    position: relative;
    margin: 10px;
    cursor: pointer;
  }
  
 .ul-pay label:before {
    background-color: white;
    color: white;
    content: " ";
    display: block;
    border-radius: 50%;
    border: 1px solid grey;
    position: absolute;
    top: -5px;
    left: -5px;
    width: 25px;
    height: 25px;
    text-align: center;
    line-height: 28px;
    transition-duration: 0.4s;
    transform: scale(0);
  }
  
 .ul-pay label img {
  height: 60px;
  width: 100%;
  transition-duration: 0.2s;
  transform-origin: 50% 50%;
  }
  
 .ul-pay :checked + label {
    border-color: #ddd;
  }
  
  .ul-pay :checked + label:before {
    content: "✓";
    background-color: #d7c900;
    transform: scale(1);
    font-weight: bold;
    border: none;
  }
  
  .ul-pay :checked + label img {
    transform: scale(0.9);
    box-shadow: 0 0 5px #333;
    z-index: -1;
  }