/*========== CHECKOUT-FORM1 ==========*/
.checkout-form1 {
  margin: 15px;
}
.checkout-form1 .container {
  width: auto;
  padding: 15px;
  border: 1px solid lightgray;
  border-radius: 10px;
  box-shadow: 0 0 5px 1px rgba(0, 0, 0, 0.1);
  background-color: var(--bg-white);
}
.checkout-form1 .container form .form-divider {
  width: 100%;
  text-align: center;
  border-bottom: 1px solid lightgray;
  line-height: 0.1em;
  margin: 20px 0;
}
.checkout-form1 .container form .form-divider span {
  background-color: var(--bg-white);
  padding: 0 15px;
  font-size: 1.15rem;
}
.checkout-form1 .container form .checkout-paypal {
  text-align: center;
}
.checkout-form1 .container form .checkout-other-method .checkout-info-header {
  text-align: left;
  font-weight: 600;
  font-size: 1.5rem;
  margin-top: 25px;
  margin-left: 5px;
}
.checkout-form1 .container form .checkout-other-method .checkout-customer-info .input-control .error {
  display: none;
  color: darkred;
  font-size: 1.25rem;
  margin-left: 5px;
}
.checkout-form1 .container form .checkout-other-method .checkout-customer-info .input-control.success input {
  border: 2px solid limegreen;
}
.checkout-form1 .container form .checkout-other-method .checkout-customer-info .input-control.success select {
  border: 2px solid limegreen;
}
.checkout-form1 .container form .checkout-other-method .checkout-customer-info .input-control.error input {
  border: 2px solid darkred;
}
.checkout-form1 .container form .checkout-other-method .checkout-customer-info .input-control.error select {
  border: 2px solid darkred;
}
.checkout-form1 .container form .checkout-other-method .checkout-customer-info input {
  width: 100%;
  display: block;
  border: 1px solid lightgray;
  border-radius: 5px;
  height: 40px;
  padding: 10px;
}
.checkout-form1 .container form .checkout-other-method .checkout-customer-info select {
  width: 100%;
  display: block;
  border: 1px solid lightgray;
  border-radius: 5px;
  height: 40px;
  padding: 10px;
}
.checkout-form1 .container form .checkout-other-method .checkout-customer-info .combined-fields .input-control .error {
  display: none;
  color: darkred;
  font-size: 1.25rem;
  margin-left: 5px;
}
.checkout-form1 .container form .checkout-other-method .checkout-customer-info .combined-fields .input-control.success input {
  border: 2px solid limegreen;
}
.checkout-form1 .container form .checkout-other-method .checkout-customer-info .combined-fields .input-control.error input {
  border: 2px solid darkred;
}
.checkout-form1 .container form .checkout-other-method .checkout-payment-details .checkout-paymentcard {
  border: 1px solid lightgray;
  border-radius: 5px;
  background-color: var(--bg-white);
  margin: 20px 0;
}
.checkout-form1 .container form .checkout-other-method .checkout-payment-details .checkout-paymentcard .checkout-card-option:first-child {
  border-bottom: 1px solid lightgray;
}
.checkout-form1 .container form .checkout-other-method .checkout-payment-details .checkout-paymentcard .checkout-card-option:last-child {
  border-top: 1px solid lightgray;
}
.checkout-form1 .container form .checkout-other-method .checkout-payment-details .checkout-paymentcard .checkout-card-option {
  display: flex;
  flex-direction: column;
  padding: 15px 10px;
}
.checkout-form1 .container form .checkout-other-method .checkout-payment-details .checkout-paymentcard .checkout-card-option .option-input {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.checkout-form1 .container form .checkout-other-method .checkout-payment-details .checkout-paymentcard .checkout-card-option .option-input label {
  margin-bottom: 0;
}
.checkout-form1 .container form .checkout-other-method .checkout-payment-details .checkout-paymentcard .checkout-card-option .option-input input {
  margin-bottom: 4px;
  margin-right: 8px;
  accent-color: var(--primary-color);
}
.checkout-form1 .container form .checkout-other-method .checkout-payment-details .checkout-paymentcard .checkout-card-option .option-input img {
  height: 15px;
  margin-left: auto;
}
.checkout-form1 .container form .checkout-other-method .checkout-payment-details .checkout-paymentcard .checkout-credit-card {
  background-color: aliceblue;
  padding: 0 10px 20px 10px;
}
.checkout-form1 .container form .checkout-other-method .checkout-payment-details .checkout-paymentcard .checkout-credit-card .combined-fields .input-control .error {
  display: none;
  color: darkred;
  font-size: 1.25rem;
  margin-left: 5px;
}
.checkout-form1 .container form .checkout-other-method .checkout-payment-details .checkout-paymentcard .checkout-credit-card .combined-fields .input-control input {
  border: 1px solid lightgray;
  border-radius: 5px;
  height: 40px;
  padding: 10px;
  width: 100%;
}
.checkout-form1 .container form .checkout-other-method .checkout-payment-details .checkout-paymentcard .checkout-credit-card .combined-fields .input-control.success input {
  border: 2px solid limegreen;
}
.checkout-form1 .container form .checkout-other-method .checkout-payment-details .checkout-paymentcard .checkout-credit-card .combined-fields .input-control.error input {
  border: 2px solid darkred;
}
.checkout-form1 .container form .checkout-other-method .checkout-submit-button {
  display: flex;
  flex-direction: column;
}
.checkout-form1 .container form .checkout-other-method .checkout-submit-button .submit-order-button {
  text-align: center;
}
.checkout-form1 .container form .checkout-other-method .checkout-submit-button .submit-order-button button {
  margin: 10px 0;
  padding: 25px 35px;
  font-weight: 600;
  font-size: 1.75rem;
  background-color: var(--primary-color);
  color: white;
  border-radius: 5px;
  border: none;
  cursor: pointer;
}
.checkout-form1 .container form .checkout-other-method .checkout-submit-button .submit-warranty {
  display: flex;
  flex-direction: column;
  margin-top: 10px;
}
.checkout-form1 .container form .checkout-other-method .checkout-submit-button .submit-warranty img {
  width: 100%;
  max-width: 250px;
  margin: 0 auto;
}
.checkout-form1 .container form .checkout-other-method .checkout-submit-button .submit-warranty .submit-warranty-text {
  text-align: center;
  margin: 10px 0;
}
.checkout-form1 .container form .checkout-other-method .checkout-submit-button .submit-warranty .submit-warranty-text img {
  width: 12px;
}
.checkout-form1 .container form .checkout-other-method .checkout-submit-button .submit-warranty .submit-warranty-text span {
  font-size: 1.2rem;
  margin-left: 2px;
}

@media (min-width: 600px) {
  .checkout-form1 .container form .checkout-other-method .combined-fields {
    display: flex;
    flex-direction: row;
    margin: 0 -10px;
  }
  .checkout-form1 .container form .checkout-other-method .combined-fields .input-control {
    width: 100%;
    margin: 0 10px;
  }
}

/*# sourceMappingURL=checkout-form1.css.map */
