/* ============================= */
/* VARIANT BUTTONS                */
/* ============================= */
.dr1007ecomvariantbtn {
	padding: 6px 10px;
	margin: 2px;
	border: 1px solid #0f766e;
	border-radius: 6px;
	background: #fff;
	color: #0f766e;
	cursor: pointer;
	font-size: 13px;
	transition: background 0.2s, color 0.2s, transform 0.1s;
}

.dr1007ecomvariantbtn.active {
	background: #0f766e;
	color: #fff;
}

.dr1007ecomvariantbtn:hover:not(:disabled) {
	transform: scale(1.05);
}

.dr1007ecomvariantbtn:disabled {
	background: #eee;
	color: #999;
	cursor: not-allowed;
}