
/*form styles*/
.enquiry_form {
	margin: 50px auto;
	text-align: center;
	position: relative;
}
.enquiry_form .form-group {
	text-align: left;
}
.control-label {
    font-size: 14px;
    margin-bottom: .2em;
}
.enquiry_form fieldset {
	background: white;
	border: 0 none;
	border-radius: 3px;
	padding: 20px 30px;
	box-sizing: border-box;
    width: 95%;
    margin: 0 2.5%;
	
	/*stacking fieldsets above each other
	position: absolute;*/
}
tbody.estimate_details_table {
    text-align: left;
}
/*Hide all except first fieldset*/
.enquiry_form fieldset:not(:first-of-type) {
	display: none;
}
.enquiry_form input.warning ,.enquiry_form textarea.warning {
	border: 1px solid #FF0000;
}
.enquiry_form select.warning {
	border: 1px solid #FF0000;
}
.enquiry_form select#metade.warning {
	border: 1px solid #FF0000;
}
/*inputs */
.enquiry_form select#metade{
  color:#808080;
  padding: 9px 15px;
	border: 1px solid #ccc;
	border-radius: 3px;
	margin-bottom: 10px;
	width: 49%;
	box-sizing: border-box;
  font-size: 13px;
}
input:read-only,textarea:read-only  {
    background-color: #f1f1f1;
}
select option:disabled {
    background-color: #c7c7c7;
}
.enquiry_form select{
  color:#808080;
  padding: 9px 15px;
	border: 1px solid #ccc;
	border-radius: 3px;
	margin-bottom: 10px;
	width: 100%;
	box-sizing: border-box;
  font-size: 13px;
}


.enquiry_form option:not(:disabled){
  color:#2C3E50;
}

.enquiry_form .checkbox-inline input[type="checkbox"]{
	width:auto;
}
.enquiry_form input, .enquiry_form textarea {
	padding: 10px 15px;
	border: 1px solid #ccc;
	border-radius: 3px;
	margin-bottom: 10px;
	width: 100%;
	box-sizing: border-box;
	color: #2C3E50;
	font-size: 13px;
}
.enquiry_form .estimate_details_table .form-control,.enquiry_form .custome_table .form-control {
    padding: 5px 15px;
    margin: 0;
    font-size: 13px;
    height: 26px;
	background: #838c871f;
}

/*buttons*/
.enquiry_form .action-button.add {
	margin:0px;
}
.enquiry_form .estimate_details_table .inline_delete,.enquiry_form .custome_table .inline_delete {
    color: red;
}
.enquiry_form .action-button {
	width: 100px;
	background: #27AE60;
	font-weight: bold;
	color: white;
	border: 0 none;
	border-radius: 1px;
	cursor: pointer;
	padding: 10px 5px;
	margin: 10px 5px;
}
.enquiry_form .action-button:hover, .enquiry_form .action-button:focus {
	box-shadow: 0 0 0 2px white, 0 0 0 3px #27AE60;
}
/*headings*/
.fs-title {
    font-size: 17px;
    text-transform: uppercase;
    color: #2C3E50;
    margin-bottom: 20px;
    font-weight: 500;
}
.fs-subtitle {
	font-weight: normal;
	font-size: 13px;
	color: #666;
	margin-bottom: 20px;
}
h1.total_amount {
    color: #ff7f50;
    margin-bottom: 10px;
	font-weight: bold;
}
.tables h4.total_amount_title {
    text-transform: uppercase;
    font-size: .75em;
    color: #777777;
    font-weight: 700;
}
/*progressbar*/
#progressbar {
	margin-bottom: 30px;
	overflow: hidden;
	/*CSS counters to number the steps*/
	counter-reset: step;
}
#progressbar.final_invoice_step li {
	width: calc(100% /2);
}
#progressbar li {
	list-style-type: none;
	color: #948c8c;
	text-transform: uppercase;
	font-size: 11px;
	width: calc(100% /6);
	float: left;
	position: relative;
}
#progressbar li:before {
	content: counter(step);
	counter-increment: step;
	width: 20px;
	line-height: 20px;
	display: block;
	font-size: 10px;
    color: #fff;
    background: #bbbaba;
	border-radius: 50%;
	margin: 0 auto 5px auto;
	z-index: 2;
    position: relative;
}
/*progressbar connectors*/
#progressbar li:after {
	content: '';
	width: 100%;
	height: 2px;
	background: #bbbaba;
	position: absolute;
	left: -50%;
	top: 9px;
}
#progressbar li:first-child:after {
	/*connector not needed before the first step*/
	content: none; 
}
/*marking active/completed steps green*/
/*The number of the step and the connector before it = green*/
#progressbar li.active:before,  #progressbar li.active:after{
	background: #27AE60;
	color: white;
}
/*RESUMO*/
#resumo {
  padding: 15px;
	border: 1px solid #ccc;
	border-radius: 3px;
	margin-bottom: 10px;
	width: 100%;
	box-sizing: border-box;
	font-family: montserrat;
	color: #2C3E50;
	font-size: 13px;
}
.control-label-default {
	font-weight: 400;
    text-align: left;
    margin-bottom: 10px;
    font-size: 15px;
    padding: 0;
}

