.wpcf7-form-control-wrap {
  &.payment_item {
    gap: 10px;

    &.radio {
      display: flex;

      .eacf7-payment-item {
        display: flex;
        align-items: center;
        gap: 5px;
      }
    }

    &.checkbox {
      display: flex;
      flex-direction: column;

      .eacf7-payment-item {
        display: flex;
        align-items: center;
        gap: 5px;

        input[type="checkbox"] {
          width: 15px;
          height: 15px;
        }
      }
    }
  }

  &.coupon {
    .coupon-wrap {
      display: flex;

      input {
        flex: 1 1 auto;
      }

      .eacf7-coupon-button {
        display: flex;
        button {
          border: 1px solid;
          border-left: 0;
        }

        span {
          background: #e3e8ed;
          padding: 6px 15px;
          color: #000;
          font-size: 14px;
          line-height: 1;
          cursor: pointer;
        }
      }

      + .wpcf7-valid-tip {
        color: green;
      }
    }
  }

  &.shipping-fee {
    .shipping-fee-wrap {
      display: flex;

      input {
        flex: 1 1 auto;
      }

      button {
        cursor: auto;
        border: 1px solid;
        border-left: 0;
      }
    }
  }

  &.total {
    .total-wrap {
      display: flex;

      input {
        flex: 1 1 auto;
      }

      button {
        cursor: auto;
        border: 1px solid;
        border-left: 0;
      }
    }
  }
}
