.vEnabled input:not([type="button"]):not([type="submit"]):not(.naoColocarBordaValidations),
.vEnabled select:not(.naoColocarBordaValidations),
.vEnabled textarea:not(.naoColocarBordaValidations) {
    border-left: 3px solid #AAA;
}

.vEnabled .vInvalid:not([type="button"]):not([type="submit"]):not(.naoColocarBordaValidations),
.vEnabled .vInvalid select:not(.naoColocarBordaValidations),
.vEnabled .vInvalid textarea:not(.naoColocarBordaValidations) {
    border-left: 3px solid rgb(250, 210, 50);
}

.vEnabled .vRequired:not([type="button"]):not([type="submit"]):not(.naoColocarBordaValidations),
.vEnabled .vRequired select:not(.naoColocarBordaValidations),
.vEnabled .vRequired textarea:not(.naoColocarBordaValidations) {
    border-left: 3px solid #ee6159;
}

.vEnabled .vRequired.vValid:not([type="button"]):not([type="submit"]):not(.naoColocarBordaValidations) {
    border-left: 3px solid #5eb95e;
}

/* Sobrescreve a regra caso um ancestral tenha a classe .ignorarValidacaoValidations */
.ignorarValidacaoValidations input,
.ignorarValidacaoValidations select,
.ignorarValidacaoValidations textarea {
    border-left: none !important;
}


.vEnabled label.vInvalid
{
	border-left: none !important;
	color: rgb(250, 210, 50) !important
}

.vEnabled label.vRequired
{
	border-left: none !important;
	color: #ee6159 !important;
}

.vEnabled label.vRequired.vValid
{
	color: #4a503c !important;
}

.vInvalidTab
{
    border-left: 3px solid #ee6159 !important;
    border-top-left-radius: .5em !important;
}

.vValidTab
{
    border-left: 3px solid #5eb95e !important;
    border-top-left-radius: .5em !important;
}

.vValidationOutput .vValidationOutputHide
{
	display: none;
}

.vEnabled .vContainerInvalid
{
	background: #fff8e5;
	box-shadow: none;
}

.vValidationAvisoPendencias
{
	display: inline-block;
	margin: 0 0 .45em .6em;
	padding: .45em .65em;
	border: 1px solid #e2b36f;
	background: #fffaf1;
	color: #5c3a09;
	box-shadow: 0 2px 7px rgba(0, 0, 0, .10);
}

.vValidationAvisoPendencias span
{
	font-weight: bold;
}
 
.vValidationAvisoPendenciasBotao
{
	border: 0;
	background: transparent;
	color: #875000;
	font-weight: bold;
	text-decoration: underline;
	cursor: pointer;
}

.vValidationFeedbackShake
{
	animation: vValidationFeedbackShake .42s ease-out;
}

@keyframes vValidationFeedbackShake
{
	0%
	{
		transform: translateX(0);
		box-shadow: 0 0 0 rgba(190, 45, 35, 0);
	}
	20%
	{
		transform: translateX(-3px);
		box-shadow: 0 0 0 2px rgba(190, 45, 35, .14);
	}
	40%
	{
		transform: translateX(3px);
		box-shadow: 0 0 0 2px rgba(190, 45, 35, .10);
	}
	65%
	{
		transform: translateX(-2px);
		box-shadow: 0 0 0 1px rgba(190, 45, 35, .06);
	}
	100%
	{
		transform: translateX(0);
		box-shadow: 0 0 0 rgba(190, 45, 35, 0);
	}
}
