/**
 * All of the CSS for your public-facing functionality should be
 * included in this file.
 */
 .woocommerce-checkout #payment ul.payment_methods li.payment_method_scan_and_pay_checkout_gateway ol{
	list-style: none;
	counter-reset: my-awesome-counter;
	margin:0;
	padding: 0 0 0 40px;
 }

.woocommerce-checkout #payment ul.payment_methods li.payment_method_scan_and_pay_checkout_gateway ol > li{
	margin:0;
	padding:5px 0 5px 0;
	counter-increment: my-awesome-counter;
	line-height: 16px;
	font-size: 14px;
}

.woocommerce-checkout #payment ul.payment_methods li.payment_method_scan_and_pay_checkout_gateway ol > li::before {
  content: counter(my-awesome-counter);
  background: #111;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  display: inline-block;
  line-height: 2rem;
  color: white;
  text-align: center;
  margin-right: 16px;
  margin-left: -35px;
}
.woocommerce-checkout #payment ul.payment_methods li.payment_method_scan_and_pay_checkout_gateway ul{
	margin:15px 0 15px 15px;
	padding-left: 0;
}
.woocommerce-checkout #payment ul.payment_methods li.payment_method_scan_and_pay_checkout_gateway ul li{
	list-style-type: disc;
	line-height: 20px;
	margin-bottom: 10px;
}
.woocommerce-checkout #payment ul.payment_methods li.payment_method_scan_and_pay_checkout_gateway ul li:before{
	display:inline;
}

.scan_and_pay_checkout_gateway-hightlight-me{
	background: #eaeaea;
	display: block;
	padding: 5px;
	margin-top:10px;
}

