.wc_frm_input {
	margin-bottom: 5px;
}
#product-form p.wc-error {
	color: red;
	margin-bottom: 5px;
	line-height: normal;
}
label.error.fail-alert {
	border: 2px solid red;
	border-radius: 4px;
	line-height: 1;
	padding: 2px 0 6px 6px;
	background: #ffe6eb;
}
input.valid.success-alert {
	border: 2px solid #4CAF50;
	color: green;
}
.wc-key-submit {
	margin-top: 15px;
}
p.wt-success {
	color: green;
	font-size: 16px;
	text-align: center;
}

.wc-key-submit .submit {
	min-width: 70px;
	position: relative;
}
.wc-key-submit.active span {
	font-size: 0;
}
.wc-key-submit.active .wc-loader {
	position: absolute;
	left: 22px;
	top: 10px;
	display: block;
}
.wc-loader {
	display: none;
	border: 3px solid #f3f3f3;
	border-radius: 50%;
	border-top: 3px solid #1e73be;
	width: 25px;
	height: 25px;
	-webkit-animation: spin 2s linear infinite;
	animation: spin 2s linear infinite;
}

/* Safari */
@-webkit-keyframes wc-spin {
	0% { -webkit-transform: rotate(0deg); }
	100% { -webkit-transform: rotate(360deg); }
}

@keyframes wc-spin {
	0% { transform: rotate(0deg); }
	100% { transform: rotate(360deg); }
}