<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.woo-mpay-gateway-form .pay-btn {
	display: flex;
	justify-content: space-around;
	align-items: center;
	font-size: 14px;
	border-radius: 10px;
    background: #FF6B00; /*#8DC63F*/
    padding: 10px 20px 10px 20px;
    color:white;
    width: 100px;

    transition: background 0.3s, width 0.3s, ease;
    -webkit-transition: background 0.3s, width 0.3s ease;
    -moz-transition: background 0.3s, width 0.3s ease;
    -o-transition: background 0.3s, width 0.3s ease;
    
}

.woo-mpay-gateway-form .pay-btn:hover {
	background: #e66000;
	width: 120px;
}

.pay-btn-icon-size-24 {
	height: 24px;
	width: 24px;
}

.woo-mpay-gateway-form .selection {
	margin-bottom: 15px;
	display: flex;
	flex-direction: column;
	justify-content: space-around;
}

.woo-mpay-gateway-form .selection label {
  padding: 10px;
  border: 1px solid #ff6a0051;
  border-radius: 7px;
  margin-bottom: 5px; 
  cursor:pointer;
  max-width: 250px;

}

.woo-mpay-gateway-form .selection label:hover {
	background-color: #ff6a0090;
	color:#fff;
}

.woo-mpay-gateway-form .selection input[type="radio"] {
	/* height: 16px;
	width: 16px;
	border: 1px solid #d1d5db;
	background-color: white;
	color: transparent; */
	display: none;
}


.woo-mpay-gateway-form .selection input[type="radio"]:checked+label {
	background-color: #ff6a00b2; 
	color: white;
}

/* style label checked radio */
</pre></body></html>