#card-errors {
  color: #ff0000;
  font-size: 14px;
  margin-top: 5px;
}
.active-tab {
  background-color:#FFFFFF;
  color: #0C0B0A !important;
}

.payment-options-container {
  display: flex;
  flex-wrap: wrap;
  border-radius: 10px;
  overflow: hidden;
  padding: 3px;
  margin: 0px 20px;
}

.payment-option {
  flex: 1 1 50%; 
  padding: 8px;
  display: ruby;
}

.payment-option label{
  cursor: pointer;
  color: black !important;
  font-family: inherit !important;
  font-size: 16px !important;
}

.payment-option button {
  padding: 12px 49px;
  font-size: 18px;
  width: 100%;
  border-radius: 6px;
  border: none; 
}

.custom-radio {
  display: block;
  position: relative;
  padding-left: 35px;
  margin-bottom: 12px;
  cursor: pointer;
  font-size: 22px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.custom-radio input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 25px;
  width: 25px;
  background-color: #fff;
  border-radius: 50%;
  border: 1px solid #6fd2c0;
}

.custom-radio:hover input ~ .checkmark {
  background-color: #6fd2c0;  
}

.custom-radio input:checked ~ .checkmark {
  background-color: #ffffff;  

}

.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

.custom-radio input:checked ~ .checkmark:after {
  display: block;
}

.custom-radio .checkmark:after {
  top: 5px;
  left: 5px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #6fd2c0;
}

@media (max-width: 768px) {
  .payment-option {
    flex: 1 1 100%; 
  }
}