
/* Keep in mind that wherever you see 'Required property' it means that the property must exist */

/* ------------------------------------------------------------------------------ */

  /* Generals */
  .uniForm fieldset{}
    .uniForm fieldset legend{ color: #333; font-weight: bold; font-size: 100%; margin: 0; padding: 1.5em 0; }
    
    /* This is the main unit that contains our form elements */
    .uniForm .ctrlHolder{ padding: 7px; border-bottom: 1px solid #dfdfdf; }
    
    .uniForm .buttonHolder{ text-align: left; margin-left: 123px; }
      .uniForm .resetButton{ float: left; }
      .uniForm .primaryAction{ font-weight: bold; }
    
    /* This class gets added to div.ctrlHolder to highlight the row */
    .uniForm .focused{ background: #fffcdf; }
      
      /* .inlineLabel is used for inputs within labels - checkboxes and radio buttons */
      .uniForm .inlineLabel input,
      .uniForm .inlineLabels .inlineLabel input,
      .uniForm .blockLabels .inlineLabel input{ float: left; margin: 0 .4em 0 0; }
        .uniForm .inlineLabel span{ float: left; width: 90%; }
        
/* ------------------------------------------------------------------------------ */

    /* .blockLabels (default style, will be applied even if you don't class the parent element) */
    .uniForm .blockLabels .ctrlHolder{}
      
      .uniForm label,
      .uniForm .blockLabels label,
      .uniForm .blockLabels .label{ margin: 0 0 .5em 0; }
      
      .uniForm .textInput,
      .uniForm .blockLabels .textInput,
      .uniForm .blockLabels .fileUpload{ width: 53%; /* <- Required property */ }
    
      .uniForm .selectInput,
      .uniForm select,
      .uniForm .blockLabels .selectInput,
      .uniForm .blockLabels select{ width: 53.5%; /* <- Required property */ }
/*      .uniForm textarea,
      .uniForm .blockLabels textarea{ width: 53%;   height: 12em; }
*/
      .uniForm .formHint,
      .uniForm .blockLabels .formHint{ width: 45%; /* <- Required property */ font-size: .9em; color: #777; position: relative; top: -.5em; }
      
      .uniForm .multiField,
      .uniForm .blockLabels .multiField{ width: 53%; }
        .uniForm .multiField .inlineLabel,
        .uniForm .blockLabels .multiField .inlineLabel{ display: block; margin: 0 0 .5em 0; }
        .uniForm .multiField .blockLabel,
        .uniForm .blockLabels .multiField .blockLabel{ width: 30%; margin: 0 10px 0 0; }
        .uniForm .multiField .blockLabel .textInput,
        .uniForm .multiField .blockLabel .selectInput,
        .uniForm .multiField .blockLabel select,
        .uniForm .blockLabels .multiField .blockLabel .textInput,
        .uniForm .blockLabels .multiField .blockLabel .selectInput,
        .uniForm .blockLabels .multiField .blockLabel select{ width: 100%; margin: .3em 0 0 0; }

/* ------------------------------------------------------------------------------ */

    /* .inlineLabels */
    .uniForm .inlineLabels .ctrlHolder{}
    
    .uniForm .inlineLabels label,
    .uniForm .inlineLabels .label{ width: 45%; /* <- Required property */ margin: .3em 2% 0 0; /* <- Required property */ }
    
    .uniForm .inlineLabels .textInput,
    .uniForm .inlineLabels .fileUpload{ width: 45%; /* <- Required property */ }
    
    .uniForm .inlineLabels .selectInput,
    .uniForm .inlineLabels select{ width: 45%; /* <- Required property */ }
    
/*    .uniForm .inlineLabels textarea{  width: 45%; height: 12em; }*/

    .uniForm .inlineLabels .formHint{ margin-top: 0; margin-left: 47%; font-size: .9em; color: #777; position: static; }
    
    .uniForm .inlineLabels .multiField{ width: 45%; /* <- Required property */ margin: 0 0 .3em 0; }
      .uniForm .inlineLabels .multiField .inlineLabel{ display: block; margin: 0 0 .5em 0; }
      .uniForm .inlineLabels .multiField .blockLabel{ float: left; width: 26%; margin: 0 3% 0 0; }
      .uniForm .inlineLabels .multiField .blockLabel .textInput,
      .uniForm .inlineLabels .multiField .blockLabel .selectInput,
      .uniForm .inlineLabels .multiField .blockLabel select{ width: 100%; margin: .3em 0 0 0; }

/* Focus pseudoclasses */
.uniForm .ctrlHolder .textInput:focus{ outline: none; /* Get rid of the 'glow' effect in WebKit, optional */ }
/* .uniForm .ctrlHolder textarea:focus{ outline: none; }*/
.uniForm div.focused .formHint{ color: #333; }

/* Columns (they are floated left by default) */
.uniForm .col{ width: 47.9%; /* <- Required property */ margin: 0 2% 20px 0; }
/* Use .first and .last classes to control the layout/spacing of your columns */
.uniForm .col.first{ width: 49%; /* <- Required property */ float: left; clear: none; }
.uniForm .col.last{ width: 49%; /* <- Required property */ float: right; clear: none; margin-right: 0; }

/* Messages */
.uniForm #errorMsg{ background: #ffdfdf; border: 1px solid #df7d7d; border-width: 1px 0; margin: 0 0 1.5em 0; padding: 7px; }
.uniForm .error{ background: #ffdfdf; border: 1px solid #df7d7d; border-width: 1px 0; }

  .uniForm #errorMsg dt, .uniForm #errorMsg h3{ margin: 0 0 .5em 0; font-size: 100%; line-height: 100%; font-weight: bold; }
  .uniForm #errorMsg dd{ margin: 0; padding: 0; }
    .uniForm #errorMsg ol{ margin: 0; padding: 0; }
      .uniForm #errorMsg ol li{ margin: 0; padding: 2px; list-style-position: inside; border-bottom: 1px dotted #df7d7d; position: relative; }
    .uniForm .errorField{ color: #af4c4c; margin: 0 0 6px 0; padding: 4px; background: #ffbfbf; }

.uniForm #OKMsg{ background: #C8FFBF; border: 1px solid #A2EF95; border-width: 1px 0; margin: 0 0 1.5em 0; padding: 7px; }
  .uniForm #OKMsg p{ margin: 0; }

/*
IT IS STRONGLY ADVISED TO MAKE YOUR CHANGES AFTER THIS COMMENT BY REPEATING (COPYING) THE SELECTOR FROM ABOVE, 
AND MODIFYING IT WITH YOUR OWN PROPERTIES/VALUES. THIS IS RECOMMENDED BECAUSE IF YOU HAPPEN TO RUN INTO TROUBLE, 
YOU CAN VERY EASILY REVERT TO A GENERIC STYLE OF UNI-FORM. BEST OF LUCK... 
*/

/* ------------------------------------------------------------------------------ */

/**/

#maintenance_calculator	.uniForm   label{ margin-top:11px; /*margin: 0 0 .5em 0;*/  width: 540px; display: block; float: left; color: #000000;  font-weight: bold; font-size: 11px; text-align: right; padding-right:10px; }

#maintenance_calculator .uniForm .ctrlHolder{ height: 25px; font-family: Verdana, Geneva, Arial, Helvetica, sans-serif;  border-bottom: none; margin:0 ; padding: 0; float: left; width: 750px;  }

#maintenance_calculator .uniForm .explanations {
	width: 700px;  text-align: right; float: right; padding-right: 40px;  margin:0; padding-top: 2px; font-size: 10px;
}

#maintenance_calculator .uniForm .textInput  {  margin-top:7px; border: 1px solid #000000; height: 16px; font-family: Verdana, Geneva, Arial, Helvetica, sans-serif; font-size: 11px; text-indent: 5px; padding-top: 1px; width: 160px; }

#maintenance_calculator .uniForm .gold { background: #c7ac13 ; } 

#maintenance_calculator .uniForm select {  margin-top:7px; border: 1px solid #000000; height: 18px; font-family: Verdana, Geneva, Arial, Helvetica, sans-serif; font-size: 11px; text-indent: 1px; padding-top: 1px; width: 160px; padding-right: 1px; }

/**/


.uniForm .ctrlHolder{ height: 25px; font-family: Verdana, Geneva, Arial, Helvetica, sans-serif;  border-bottom: none; margin:0 ; padding: 0; float: left; width: 279px;  }

.uniForm .focused{ background:  #f3f3f3; border: 1px solid #e7e7e7;  border-width: 1px 0; width: 100%; padding-left: 1px; }

.uniForm label,
.uniForm .blockLabels label,
.uniForm .blockLabels .label{ margin-top:11px; /*margin: 0 0 .5em 0;*/  width: 97px; display: block; float: left; color: #000000;  font-weight: bold; font-size: 11px; text-align: right; padding-right:10px; }

.uniForm .textInput,
.uniForm .blockLabels .textInput,
.uniForm .blockLabels .fileUpload{ margin-top:7px; border: 1px solid #000000; height: 16px; font-family: Verdana, Geneva, Arial, Helvetica, sans-serif; font-size: 11px; text-indent: 5px; padding-top: 1px; width: 165px; }
	  
	  
.uniForm  .xx { float: left; font-family: Verdana, Geneva, Arial, Helvetica, sans-serif; font-size: 9px;  width: 180px; padding-left:107px; padding-top: 1px; }	  
	  
.uniForm .tt {border: 1px solid #000000; width: 500px;  float: right; height: 70px; color: #000000; text-indent: 5px; font-size: 11px; margin-top: 12px; margin-bottom: 27px; }	  

.uniForm .form_holder textarea {border: 1px solid #000000;   color: #000000; text-indent: 5px; font-size: 11px; margin-top: 7px;width: 175px; height: 17px; }	  
	  
.uniForm .errorMsg {
	float: left;
	/*background: #ffdfdf;*/
	color: red;
	border: 0; 
	/*border: 1px solid #df7d7d;  */
	/*border-width: 1px 0; */
	float: left;  width: 100%; 
	margin-bottom: 3px; 
	padding-left: 1px; 
	
}	  
	  
.uniForm .errorMsg label {	  
	  color: #e83839;
}  

.uniForm .large {
	height: 82px;
	display: block;
	float: left;
}	  
  
.uniForm em { color: #a60a00; margin: 0 10px 0 10px; float: left;}	  

.uniForm .explanatory_text {
	color: #6d6d6d;
}

.submitButton {
	width: 120px;
	display: inline;
	margin: 10px 0 20px 50px;
}

.loginButton {
	width: 52px;	
	margin: 10px 0 20px 50px;
}

.continuaButton {
	padding: 0 2px;
	margin: 10px 0 20px 50px;
}	

.recover_pass {
	padding: 0 2px;
	width: 180px;
	display: inline;
	float: left;
	margin-top: 10px;
	margin-left: 50px;
}

.finalizeButton {
	/*padding: 0 2px;
	margin: 10px 0 20px 0px;*/
	background: #a60a00;
	text-align: center;
	color:#ffffff;
	font-family: Trebuchet MS, Verdana, Arial, Helvetica, sans-serif;
	font-size: 22px;
	font-weight: bold;
	text-decoration: none;
	display: block;
	width: 275px;
	line-height: 32px;
	float: right;
	height: 32px;
}
	
.uniForm .error_text{ border: 0; color: #d10e02; float: left; text-indent: 20px;  }	




.tipButton {
	width: 60px;
	display: inline;
	margin: 3px 0 20px 10px;
}

.sectiune_cont {
	color: #d10e02;
	font-size: 16px;
	float: left;
	margin: 25px 0 6px 0;
}

.uniForm .product_quantity {
	margin-top: 6px;
	width: 18px;
	float: left;
	text-align: center;
	margin-left: 6px;
	color: #6e6e6e;
	font-weight: bold;
	height: 16px;
	font-size: 14px;
}

.uniForm .nr_produse {
	float: left;
	margin-top: 17px;
	margin-right: 10px;
	color: #6e6e6e;
}

 .uniForm  .shipping_as_billing_text{
	float: left;
	color: #6d6d6d;
}

#demo_request #right_content .demo_location textarea { 
width: 165px;
}