.payment__wrapper {
  padding: 10px 0 40px 0;
}
.PayU-headline {
  position: relative;
  margin-bottom: 25px;
}
.PayU-headline:after {
  position: absolute;
  content: '';
  width: 150px;
  height: 1px;
  left: 0;
  bottom: -10px;
  background-color: #e83335;
}
.PayU-option {
  display: flex;
  justify-content: space-between;
}
.PayU-option label {
  width: calc(25% - 20px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  align-items: center;
  background: #f6f6f6;
  padding: 30px;
  box-sizing: border-box;
  height: 150px;
}
.PayU-option input {
}
.PayU-option label > span {
  position: absolute;
  left: 50%;
  /* transition: 50%; */
  transform: translateX(-50%);
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 1px solid #000;
  background: #f6f6f6;
  padding: 3px;
  box-sizing: border-box;
}
.PayU-option label > span:after {
  content: '';
  transition: 0.3s all;
  width: 100%;
  height: 100%;
  /* transform: scale(0); */
  border-radius: 50%;
  background: transparent;
  display: block;
}
.PayU-option label > input:checked ~ span:after {
  /* transform: scale(1); */
  background: #000;
}
.PayU-option div {
  display: flex;
  flex-wrap: wrap;
  font-weight: bold;
  letter-spacing: 1.3px;
  font-size: 24px;
  line-height: 32px;
  max-width: 100%;
  margin-top: auto;
}
.PayU-option div input {
  width: 100%;
  max-width: calc(100% - 50px);
  display: block;
  margin-right: 10px;
  border: none;
  outline: none;
  border-bottom: 1px solid #000;
  background: transparent;
  text-align: center;
  font-weight: bold;
}
.PayU-option div > span {
  width: 20px;
  font-weight: bold;
  letter-spacing: 1.3px;
  font-size: 24px;
  line-height: 32px;
}
.PayU-option i {
  font-family: 'Inter', serif;
  font-size: 14px;
  line-height: 22px;
  width: 100%;
  height: 25px;
  display: flex;
  font-weight: normal;
  justify-content: center;
  align-items: center;
}
.payment__section .form-half {
  display: flex;
  justify-content: space-between;
  padding-bottom: 15px;
}
.payment__section .form-half label {
  display: flex;
  flex-direction: column;
  width: calc(50% - 30px);
}
.payment__section .form-half span {
  display: block;
  padding-bottom: 7px;
  font-weight: bold;
  font-family: 'Inter', serif;
}
.payment__section .consent {
  position: relative;
  display: block;
  padding-bottom: 6px;
  font-weight: bold;
  font-family: 'Inter', serif;
  padding-left: 30px;
  padding-bottom: 15px;
}
.payment__section .consent input[type='checkbox'] {
  position: absolute;
  top: 3px;
  left: 3px;
}
/* .payment__section .consent span:after{ */

/* padding-left: 30px; */
/* } */
.payment__section .consent span:after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 20px;
  height: 20px;
  border-radius: 6px;
  border: 1px solid #dad7d7;
  background: #fff;
  padding-left: 2px;
  box-sizing: border-box;
}
.payment__section .consent input[type='checkbox']:checked ~ span:after {
  content: '\002714';
  color: #000;
}
.payment__section label {
}
.payment__section input[type='email'],
.payment__section input[type='tel'],
.payment__section input[type='text'] {
  font-family: 'Inter', serif;
  width: 100%;
  display: block;
  padding: 9px;
  border-radius: 6px;
  border: 1px solid #dad7d7;
  box-sizing: border-box;
}

.payment__section input {
}
.payment__buttons {
  display: flex;
  justify-content: space-between;
}
.payment__button {
  width: calc(50% - 20px);
  text-align: center;
  background: linear-gradient(90deg, #e83335 0%, #c9242c 100%);
  color: white;
  padding: 15px 20px 15px;
  transition: 0.4s !important;
  border: 1px solid #e83335;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s all;
}
.payment__button:hover {
    background: linear-gradient(90deg, white 0%, white 100%);
    color: #E83335;
}

@media (max-width: 980px) {
  .PayU-option {
    flex-wrap: wrap;
  }
  .PayU-option label {
    width: calc(50% - 30px);
    margin-bottom: 40px;
  }
  .PayU-option label:nth-last-child(2) {
    margin-bottom: 0;
  }
  .PayU-option label:nth-last-child(1) {
    margin-bottom: 0;
  }
}
@media (max-width: 760px) {
  .PayU-headline:after {
    left: 50%;
    transform: translateX(-50%);
  }
  .PayU-option label {
    width: calc(50% - 20px);
    margin-bottom: 40px;
  }
  .payment__section .form-half label {
    width: calc(50% - 20px);
  }
}
@media (max-width: 550px) {
  .PayU-option label {
    width: 100%;
    margin-bottom: 30px;
  }
  .PayU-option label:nth-last-child(2) {
    margin-bottom: 30px;
  }
  .PayU-option label:nth-last-child(1) {
    margin-bottom: 0;
  }
  .payment__section .form-half {
    flex-wrap: wrap;
    padding-bottom: 0;
  }
  .payment__section .form-half label {
    width: 100%;
    padding-bottom: 15px;
  }
  .payment__buttons {
    flex-wrap: wrap;
  }
  .payment__button {
    width: 100%;
    margin-bottom: 15px;
  }
}
