.wc-credit-card-form {
  width: 100%;
}

.form-field {
  width: 100%;
  padding: 5px;
}

.success {
  padding: 10px;
  border: 1px solid rgb(6, 149, 6);
  color: rgb(24, 180, 24);
}

.wc-payment-form .form-field.error {
  border: 1px solid #ed0a0a;
}

.wc-credit-card-form th {
  width: 260px;
}

.required {
  color: #ed0a0a;
}
#wpspf_response p {
  margin-top: 25px;
  display: block;
  font-size: 14px;
  color: red;
  border: 1px dashed #f99f9f;
  background: #ff00001c;
  padding: 10px;
  margin-bottom: 0;
}
/*loader css*/
.wpspf_loader {
  border: 5px solid #dcdcdc;
  border-radius: 50%;
  border-top: 5px solid #3498db;
  border-bottom: 5px solid #3498db;
  width: 30px;
  height: 30px;
  -webkit-animation: spin 2s linear infinite;
  /* Safari */
  animation: spin 2s linear infinite;
  float: left;
}

/* Safari */
@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
  }
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.wpspf_loader_text {
  float: left;
}


.tab{
  /*display: none;*/
  width: 100%;
  margin: 0px auto;
}
.current{
  display: block;
}
.wc-payment-form label.error {
  padding: 5px 0 0;
  border: 0;
  color: #ed0a0a;
  font-size: 12px;
}
.form-title h2 {
  display: none;
}
.form-title h2.current {
  display: block;
}
/*progressbar*/
#progressbar {
  margin-bottom: 30px;
  overflow: hidden;
  /*CSS counters to number the steps*/
  counter-reset: step;
}

#progressbar li {
  list-style-type: none;
  color: white;
  text-transform: uppercase;
  font-size: 9px;
  width: 33.33%;
  float: left;
  position: relative;
  letter-spacing: 1px;
}

#progressbar li:before {
  content: counter(step);
  counter-increment: step;
  width: 24px;
  height: 24px;
  line-height: 26px;
  display: block;
  font-size: 12px;
  color: #333;
  background: white;
  border-radius: 25px;
  margin: 0 auto 10px auto;
}

/*progressbar connectors*/
#progressbar li:after {
  content: '';
  width: 100%;
  height: 2px;
  background: white;
  position: absolute;
  left: -50%;
  top: 9px;
  z-index: -1; /*put it behind the numbers*/
}

#progressbar li:first-child:after {
  /*connector not needed before the first step*/
  content: none;
}

/*marking active/completed steps green*/
/*The number of the step and the connector before it = green*/
#progressbar li.active:before, #progressbar li.active:after {
  background: #ee0979;
  color: white;
}
#resultCount {
  display: none;
}


/* Payment form v2*/
.radio-selector div {
  padding-right: 10px;
}
.radio-selector label {
  padding-bottom: 0;
  font-size: 16px;
}
.form-group.payment-form--header {
  padding-bottom: 20px;
}

.label-email span {
  color: #116ab9;
}
.payment-form--header h3 {
  font-size: 20px;
  font-weight: bold;
}
.label-instruction {
  padding-bottom: 5px;
  padding-top: 5px;
}
.booking-terms {
  padding-top: 20px;
}
.booking-terms p {
  font-size: 14px;
  line-height: normal;
  margin: 0;
  color: #15100D;
}

.radio-selector input[type="radio"]
{
  appearance: none;
}

.radio-selector input[type="radio"] + label
{
  cursor: pointer;
  position: relative;
  padding-left: 30px;
  line-height: 20px;
}

.radio-selector input[type="radio"] + label::before
{
  content: "";
  display: inline-block;
  width: 20px;
  aspect-ratio: 1;
  border: 1px solid #333;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  opacity: 1;
  transition: all 0.3s;
}

.radio-selector input[type="radio"] + label::after
{
  content: "";
  display: inline-block;
  width: 12px;
  aspect-ratio: 1;
  border: 1px solid #1aa74e;
  background: #1aa74e;
  border-radius: 50%;
  position: absolute;
  left: 4px;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0;
  transition: all 0.3s;
}

.radio-selector input[type="radio"]:checked + label::after
{
  opacity: 1;
}
.bg-green, .widget-wrap .bg-green {
  background: #1CB954;
}
.form-stripe h3 {
  font-size: 20px;
  font-weight: bold;
  padding-bottom: 5px;
}
.form-stripe hr {
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
}
.additional-information-g {
  padding-top: 20px;
}
.additional-information-g h2 {
  font-size: 20px;
  font-weight: bold;
}
.additional-information-g h3 {
  font-size: 16px;
  font-weight: bold;
  padding-top: 20px;
  color: #333;
  padding-bottom: 5px;
}