/*
	
	red: #DB2B35
	grey: #AFAFAF
	
	
*/
	* {font-family: 'Open Sans', sans-serif !important; color: #666;}
	* {outline: none;}
	.relPos {position: relative;}


/*
		##### header steps #####
*/
select::-ms-expand {
    display: none;
}

	.headSteps{
		margin-top: 0px;
	}
	
	.headSteps .col { 
		position: relative;
		padding: 0; 
		margin: 0;
	}
	
	.headLineOutline{
		border: 1px solid #AFAFAF;
		background: #fff;
		display: block;
		width: 50px;
		height: 50px;
		margin: 0 auto;
		text-align: left; 
		border-radius: 25px;
	}
	
	.headLineSquare{
		background: #fff;
		display: block;
		height: 30px;
		width: 50px;
		position: relative;
		top: 10px;
		left: 10px;
		line-height
		font-size: 20px;
		font-weight: bold;
		line-height: 30px;
			
	}
	
	.headLineCircle{
		background: #AFAFAF;
		height: 30px;
		width: 30px;
		text-align: center;
		color: #fff;
		border-radius: 15px;
		z-index: 2;
		position: relative;
		
	
	}
	
	.headLine1{
		border-top: 1px solid #AFAFAF;
		position: absolute;
		top: 25px;
		z-index: -1;
		width: 50%;
	}
	.headLine2{
		border-top: 1px solid #AFAFAF;
		position: absolute;
		top: 25px;
		z-index: 1;
		width: 50%;
		left: 50%;
	}
	
	.headLine1L{
		border-top: 1px solid transparent!important;
	}
	.headLine2R{
		border-top: 1px solid transparent!important;
	}
	
	.headStepsDesc {color: #AFAFAF; margin-bottom: 15px;}
	
			
		@media (max-width: 400px) {
			.headStepsDesc {font-size: 10px}	
		}

	.headLineOutline.active{ border: 1px solid #DB2B35; }
	.headLineCircle.active{ background: #DB2B35;	}
	.headLine1.active{ border-top: 1px solid #DB2B35;}
	.headLine2.active{ border-top: 1px solid #DB2B35;}
 
	.headStepsDesc .active {color: #DB2B35;}
	
	h5 {font-weight: bold; margin-top: 30px; font-size: 18px;} 
	

/*
		##### form items #####
*/	
	
	
	
	::-webkit-input-placeholder {  color: #ccc; }
	:-ms-input-placeholder {  color: #ccc; }
	::placeholder {  color: #ccc; }
	
	input.hide{border: 1px dashed red;}
	
	input[type=text] {
		width: 100%;
		border: 1px solid #AFAFAF;
		padding: 7px;
		padding-left: 10px;
		font-size: 16px;
		margin-top: 5px;
		display: block;
		border-radius: 0;
		outline: none;    
	    -webkit-appearance: none;
	    -moz-appearance: none;
	    height: 40px;
	}


	form .row {padding-top: 20px; padding-bottom: 20px;}
	
	
	.loBtn { 
		width: 100%;
		border: 1px solid #666;
		padding: 7px;
		padding-left: 10px;
		font-size: 16px;
		margin-top: 5px;
		display: block;
		border-radius: 0;
		outline: none;    
	    -webkit-appearance: none;
	    -moz-appearance: none; 
	    text-align: center; 
		text-transform: uppercase; 
		border: 1px solid #DB2B35;
		color: #fff;
		background: #DB2B35;
		-webkit-transition: all 0.25s ease-in;
	    -moz-transition: all 0.25s ease-in;
	    -ms-transition: all 0.25s ease-in;
	    -o-transition: all 0.25s ease-in;
	    transition: all 0.25s ease-in;
	    text-decoration: none;
	}
	
	.loBtn:hover { 
		border: 1px solid #000;
		color: #fff;
		background: #000;
	    text-decoration: none;
	}
	
	.loBtnBack {
		background: #fff;
		color: #DB2B35;
	}
	
	.loBtnBack:hover {
		background: #fff;
		color: #000;
		border: 1px solid #000;
	}
	
	
 /* -- checkbox /  radio -- */
  
  
/* Base for label styling */
[type="radio"]:not(:checked),
[type="radio"]:checked,
[type="checkbox"]:not(:checked),
[type="checkbox"]:checked {
  position: absolute;
  left: -9999px;
}
[type="radio"]:not(:checked) + label,
[type="radio"]:checked + label,
[type="checkbox"]:not(:checked) + label,
[type="checkbox"]:checked + label {
  position: relative;
  padding-left:30px;
  cursor: pointer;
} 
/* checkbox aspect */
[type="radio"]:not(:checked) + label:before,
[type="radio"]:checked + label:before,
[type="checkbox"]:not(:checked) + label:before,
[type="checkbox"]:checked + label:before {
  content: '';
  position: absolute;
  left: 0; top: 0;
  width: 20px; 
  height: 20px;
  border: 1px solid #666;
  background: #fff;
  border-radius: 0px; 
} 
/* checked mark aspect */
[type="radio"]:not(:checked) + label:after,
[type="radio"]:checked + label:after,
[type="checkbox"]:not(:checked) + label:after,
[type="checkbox"]:checked + label:after {  
  content: '\2715'; 
  position: absolute;
  top: 0px; 
  left: 4px;
  font-size: 18px;
  line-height: 19px;
  color: #DB2B35;
  transition: all .2s; 
} 
/* checked mark aspect changes */
[type="radio"]:not(:checked) + label:after ,
[type="checkbox"]:not(:checked) + label:after {
  opacity: 0;
  transform: scale(0);
}
[type="radio"]:checked + label:after,
[type="checkbox"]:checked + label:after {
  opacity: 1;
  transform: scale(1);
} 
/* disabled checkbox */
[type="radio"]:disabled:not(:checked) + label:before,
[type="radio"]:disabled:checked + label:before, 
[type="checkbox"]:disabled:not(:checked) + label:before,
[type="checkbox"]:disabled:checked + label:before{
  box-shadow: none;
  border-color: #bbb;
  background-color: #ddd;
}
[type="radio"]:disabled:checked + label:after,
[type="checkbox"]:disabled:checked + label:after {
  color: #999;
}
[type="radio"]:disabled + label,
[type="checkbox"]:disabled + label {
  color: #aaa;
}
/* accessibility */
[type="radio"]:checked:focus + label:before,
[type="checkbox"]:not(:checked):focus + label:before {
  border: radio dotted blue;
}
/* hover style just for information */
label:hover:before {
  background: #fafafa!important;
} 
	
 /* -- checkbox radio  end-- */
 
 
 /* -- checkbox radio  CUSTOM-- */
		  
		/* Base for label styling */
		.srcRadio [type="radio"]:not(:checked),
		.srcRadio [type="radio"]:checked {
		  position: absolute;
		  left: -9999px;
		}
		.srcRadio [type="radio"]:not(:checked) + label,
		.srcRadio [type="radio"]:checked + label {
		  position: relative;
		  padding-left:40px;
		  padding-top: 3px;
		  cursor: pointer;
		} 
		/* checkbox aspect */
		.srcRadio [type="radio"]:not(:checked) + label:before,
		.srcRadio [type="radio"]:checked + label:before {
		  content: '';
		  position: absolute;
		  left: 0; top: 0;
		  width: 30px; 
		  height: 30px;
		  border: 1px solid #666;
		  background: #fff;
		  border-radius: 15px; 
		} 
		/* checked mark aspect */
		.srcRadio [type="radio"]:not(:checked) + label:after,
		.srcRadio [type="radio"]:checked + label:after  {  
		  content: ''; 
		  position: absolute;
		  top: 5px; 
		  left: 5px;
		  height: 20px;
		  width: 20px;
		  border-radius: 10px;
		  font-size: 18px;
		  line-height: 19px;
		  background: #DB2B35;
		  transition: all .2s; 
		} 
		/* checked mark aspect changes */
		.srcRadio [type="radio"]:not(:checked) + label:after  {
		  opacity: 0;
		  transform: scale(0);
		}
		.srcRadio [type="radio"]:checked + label:after  {
		  opacity: 1;
		  transform: scale(1);
		} 
		/* disabled checkbox */
		.srcRadio [type="radio"]:disabled:not(:checked) + label:before,
		.srcRadio [type="radio"]:disabled:checked + label:before {
		  box-shadow: none;
		  border-color: #bbb;
		  background-color: #ddd;
		}
		.srcRadio [type="radio"]:disabled:checked + label:after  {
		  color: #999;
		}
		.srcRadio [type="radio"]:disabled + label  {
		  color: #aaa;
		  
		}
		/* accessibility */
		.srcRadio [type="radio"]:checked:focus + label:before  {
		  border: radio dotted blue;
		}
		/* hover style just for information */
		.srcRadio label:hover:before {
		  background: #fafafa!important;
		} 
			
 /* -- checkbox radio  end-- */
 
	
	

.hrRed {
	border-top: 2px solid #DB2B35; 
	margin-top: 10px;
    margin-bottom: 10px;
}

#litersSign{
	color: #AFAFAF;
	display: block;
	position: absolute;
	top: 0px;
	right: 0px;
	height: 40px;
	width: 40px;
	text-align: center;
    border-left: 1px solid #AFAFAF;
    padding: 0px;
    padding-left: 0px;
    margin-top: 0px;
    display: block;
    border-radius: 0;
    outline: none; 
	line-height: 40px;
	font-size: 16px;    
}
	
	
.inputPlusMinus {
	position: relative;	
}
.inputPlusMinus input {
	text-align: center;
}
	
.inputPlusMinus .inputPlus,
.inputPlusMinus .inputMinus {
	color: #AFAFAF;
	display: block;
	position: absolute;
	top: 0px;
	height: 40px;
	width: 40px;
	text-align: center;
    padding: 0px;
    padding-left: 0px;
    margin-top: 0px;
    display: block;
    border-radius: 0;
    outline: none; 
	font-size: 40px;  
	line-height: 40px;
	text-decoration: none;  
	background: #AFAFAF;
	font-weight: 100;
	color: #fff;
		-webkit-transition: all 0.25s ease-in;
	    -moz-transition: all 0.25s ease-in;
	    -ms-transition: all 0.25s ease-in;
	    -o-transition: all 0.25s ease-in;
	    transition: all 0.25s ease-in;
	
}	
.inputPlusMinus .inputPlus {
	right: 0px;
    border-left: 1px solid #AFAFAF;
	line-height: 40px;
}
.inputPlusMinus .inputMinus {
	left: 0px;
    border-right: 1px solid #AFAFAF;
	line-height: 34px;
}	
	
	
.inputPlusMinus .inputPlus:hover,
.inputPlusMinus .inputMinus:hover{
	background: #DB2B35; 
} 
	
.termsLink, .termsLink:hover {text-decoration: none;}	
	
.termsLink:hover span{text-decoration: underline;}
.redText {color: #DB2B35;}	
	
	
	
	select {
		width: 100%;
		border: 1px solid #AFAFAF;
		background: #fff;
		padding: 7px;
		padding-left: 10px;
		font-size: 16px;
		margin-top: 5px;
		display: block;
		border-radius: 0;
		outline: none;    
	    -webkit-appearance: none;
	    -moz-appearance: none;
	    height: 40px;
	    cursor: pointer;
	}	 
	
	select {
	  background-image:
	    linear-gradient(45deg, transparent 50%, #DB2B35 50%),
	    linear-gradient(135deg, #DB2B35 50%, transparent 50%),
	    linear-gradient(to right, #AFAFAF, #AFAFAF);
	  background-position:
	    calc(100% - 21px) 16px,
	    calc(100% - 13px) 16px,
	    calc(100% - 40px) 0px;
	  background-size:
	    8px 8px,
	    8px 8px,
	    1px 40px;
	  background-repeat: no-repeat;
	}

textarea{
		width: 100%;
		border: 1px solid #AFAFAF;
		padding: 7px;
		padding-left: 10px;
		font-size: 16px;
		margin-top: 5px;
		display: block;
		border-radius: 0;
		outline: none;    
	    -webkit-appearance: none;
	    -moz-appearance: none;
	    height: 120px;
	}

.strongLabel label {font-weight: bold!important;}
.strongLabel .col-md-3 {border-right: 1px solid #afafaf;}
.width50 {display: inline-block; width: 40%; padding-top: 10px; padding-bottom: 20px;}	

.opacity50{opacity: 0.5; filter: alpha(opacity=50);}

.datepicker{background-image: url(/img/cal.png); background-repeat: no-repeat;  background-position: calc(100% - 7px) center; background-size: 23px 25px; }

.formErr {color: #DB2B35; font-weight: normal;}
.formErr strong {color: #DB2B35; font-weight: bold;}

.formErr2 {color: #DB2B35; font-weight: normal; display: none; font-weight:bold;}
.formErr3 {color: #DB2B35; font-weight: normal; font-weight:bold;}

.icon-new-height {
	height: 100px;
	padding-top: 5px;
	padding-bottom: 5px;
}


 

 
 