/*
	Enfeitando form
*/
.text-upper {
	text-transform: uppercase;
}

.form-ok {
	background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%238dbf42' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' class='feather feather-check'%3e%3cpolyline points='20 6 9 17 4 12'%3e%3c/polyline%3e%3c/svg%3e");
	background-repeat: no-repeat;
	background-position: right calc(.375em + .1875rem) center;
	background-size: calc(.75em + .375rem) calc(.75em + .375rem);
	border-color: #8dbf42 !important;
}

.form-ok-select {
	border-color: #8dbf42 !important;
}

.form-ok:focus {
	border-color: #28a745;
	box-shadow: 0 0 0 .2rem rgba(40,167,69,.25);
}

.form-nok {
	background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23e7515a' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' class='feather feather-x'%3e%3cline x1='18' y1='6' x2='6' y2='18'%3e%3c/line%3e%3cline x1='6' y1='6' x2='18' y2='18'%3e%3c/line%3e%3c/svg%3e");
	background-repeat: no-repeat;
	background-position: right calc(.375em + .1875rem) center;
	background-size: calc(.75em + .375rem) calc(.75em + .375rem);
	border-color: #dc3545 !important;
}

.form-nok-select {
	border-color: #dc3545 !important;
}

.form-nok:focus {
	border-color: #dc3545;
	box-shadow: 0 0 0 .2rem rgba(220,53,69,.25);
}

.invalid-feedback, .valid-feedback, .warning-feedback {
	display: none;
}

.invalid-feedback {
	margin: 3px 0 0 10px;
	color: #e7515a;
	font-size: 10px;
	font-weight: 600;
	letter-spacing: 1px;
}

.valid-feedback {
	margin: 3px 0 0 10px;
	color: #8dbf42;
	font-size: 10px;
	font-weight: 600;
	letter-spacing: 1px;
}

.warning-feedback {
	margin: 3px 0 0 10px;
	color: #e7515a;
	font-size: 10px;
	font-weight: 600;
	letter-spacing: 1px;
}

select[readonly] {
	background: #eee;
	pointer-events: none;
	touch-action: none;
}