/*
 * Sistema de lead - Unifor
 *
 * By: Paulo Costa - paulocosta@unifor.br
 *
 */
@import url(components.css);

@import url(helpers.css);

/*---- FORM INPUT ----*/
.custom-form-control {
	border: none !important;
	border-bottom: 1px solid #CCC !important;
	border-radius: 0 !important;
	box-shadow: none !important;
	color: #666 !important;
	height: 29px !important;
	padding: 4px 8px !important;
	transition: border-bottom-color .2s ease-in-out !important;
}

.form-control:focus {
	border-bottom: 1px solid #002969 !important;
}

/*---- RADIO INPUT ----*/
.custom-radio-input {
	border: 1px solid #ccc !important;
	box-sizing: border-box;
	position: absolute;
	top: 0;
	height: 21px;
	width: 17px;
	background-color: #eee;
	border-radius: 50%;
}

.custom-radio-input:hover {
	background-color: #ccc;
}

.custom-radio-input:checked {
	background-color: #002969;
}