/* Style the form */
#regForm {
  background-color: #ffffff;
  margin: 100px auto;
  width: 100%;
  min-width: 300px;
}

/* Style the input fields */
input {
  padding: 10px;
  width: 100%;
  font-size: 17px;
  font-family: Raleway;
  border: 1px solid #aaaaaa;
}

/* Mark input boxes that gets an error on validation: */
input.invalid {
  background-color: #ffdddd;
}

/* Hide all steps by default: */
.tab {
  display: none;
}
.step-steps {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 30px;
}
/* Make circles that indicate the steps of the form: */
.step {
  border: none;
  display: inline-block;
  width: 25%;
  text-align: left;
  color: #000;
  font-weight: 600;
  font-size: 14px;
}

/* Mark the active step: */
.step.active {
  opacity: 1;
}

/* Mark the steps that are finished and valid: */
.step.finish::after {
  background-color: #79c5c8;
}
.step::after {
  content: "";
  display: block;
  width: 100%;
  height: 15px;
  background: #ddd;
}
.step:first-child::after {
  border-radius: 15px 0px 0px 15px;
}
.step:last-child::after {
  border-radius: 0px 15px 15px 0px;
}
#prevBtn,
#nextBtn {
  background-color: #79c5c8;
  border-radius: 10px;
  color: #fff !important;
  margin-right: 0px !important;
}
#nextBtn {
  float: right;
}
#prevBtn {
  float: left;
}
.thoigian-item {
  max-width: 20%;
  width: calc(20% - 5px);
  padding: 5px;
  background-color: #f7f7f7;
  margin-bottom: 3px;
  border-radius: 10px;
  margin-right: 5px;
  border: 1px solid #ddd;
  float: left;
}
.thoigian-item:hover {
  border: 1px solid #222;
}
.thoigian-item:hover input {
}
.thoigian-item input {
  width: 15px;
  height: 15px;
  margin-bottom: 0px !important;
}
.date {
  max-width: 120px;
  background-color: #79c5c8;
  border-radius: 10px;
  color: #fff !important;
  padding: 5px;
  margin-bottom: 10px;
  text-align: center;
}
.choose-tiem {
  display: flex;
  gap: 10px;
}
.choose-tiem .left {
  width: 25%;
}
.choose-tiem .right {
  width: 75%;
}
.info-customer-row {
  display: flex;
  gap: 20px;
}
.info-customer-row input,
.full textarea {
  border-radius: 10px;
  border: 1px solid #ddd;
}
.info-customer-row .left,
.info-customer-row .right,
.info-customer-row .mid {
  width: 33.33%;
}
.tab select {
  border-radius: 10px;
  border: 1px solid #ddd;
}
.pack {
  color: #000;
  font-weight: 600;
}
.product-option-item {
  border-radius: 10px;
  border: 1px solid #ddd;
  background: #ddd;
  padding: 8px;
  margin-bottom: 15px;
}
.product-option-item input {
  width: 15px;
  height: 15px;
  margin-bottom: 0px !important;
}
#payment_method {
  list-style: none;
}
#payment_method input {
  width: 40px;
}
.gateway-hd {
  padding-left: 65px;
}
