.field {
	position: relative;		
}

.field .input-wrap {
	position: relative;
	text-align: left;
	z-index: 1;	
	height: 43px;
	border: 1px solid #cbcbcb;
	background: #ffffff;
	-webkit-border-radius: 5px;
	 -khtml-border-radius: 5px;
	   -moz-border-radius: 5px;
	     -o-border-radius: 5px;
	        border-radius: 5px;	        
	-webkit-transition: all 0.3s ease 0s;
	   -moz-transition: all 0.3s ease 0s;
	    -ms-transition: all 0.3s ease 0s;
	     -o-transition: all 0.3s ease 0s;
	        transition: all 0.3s ease 0s;
}
.field .input-wrap > .title {
	font-size: 0;
	line-height: 0;
	letter-spacing: -1px;	
	position: absolute;
	left: 0;
	top: 0;
	vertical-align: top;
	white-space: nowrap;
	width: 130px;
	height: 100%;
	background: #f3f3f3;
	border-right: 1px solid #e5e8eb;
	text-align: left;
	-webkit-border-radius: 4px 0 0 4px;
	 -khtml-border-radius: 4px 0 0 4px;
	   -moz-border-radius: 4px 0 0 4px;
	     -o-border-radius: 4px 0 0 4px;
	        border-radius: 4px 0 0 4px;
}
.field .input-wrap > .title::before {
	display: inline-block;
	content: '';
	width: 0;
	height: 100%;
	vertical-align: middle;
}
.field .input-wrap > .title .i {
	display: inline-block;
	width: 40px;
	text-align: center;
	vertical-align: middle;
}
.field .input-wrap > .title .t {
	display: inline-block;
	position: relative;
	padding-left: 15px;
	vertical-align: middle;
	letter-spacing: normal;
	white-space: normal;
	font: normal 14px/1.4em "Montserrat-SemiBold";
	color: #3b3b3b;
}
.field .input-wrap > .title .i + .t {
	padding-left: 0;
}
.field .input-wrap > .inner {
	display: block;
	letter-spacing: normal;
	white-space: normal;
	position: relative;
	height: 100%;
}
.field .input-wrap .placeholder {	        
	display: inline-block;
	background: none;
	font: normal 16px/18px "Lato-Regular";
	position: absolute;
	z-index: 1;
	width: 0;
	padding-left: 15px;
	padding-right: 3px;
	top: 10px;
	left: 0;
	height: 20px;
	white-space: nowrap;
	color: #a8a8a8;
	text-align: right;
	-webkit-transition: all 0.3s ease 0s;
	   -moz-transition: all 0.3s ease 0s;
	    -ms-transition: all 0.3s ease 0s;
	     -o-transition: all 0.3s ease 0s;
	        transition: all 0.3s ease 0s;
}
.field .input-wrap .placeholder.small {
	/*font: normal 9px/18px "Lato-Regular" !important;*/
	font-size: 0;
/*	color: #b4b4b4;*/
/*	color: #fff;*/
/*	top: -3px !important;
	width: 100%;*/
	opacity: 0;
}
.field .input-wrap input {
	display: block;
	width: 100%;
	position: absolute;
	z-index: 2;
	background: transparent;
	left: 0;
	top: 10px;
	height: 20px;
	font: normal 16px/18px "Lato-Regular";
	color: #3b3b3b;
	padding: 0 5px 0 15px;
	overflow: hidden;
	cursor: text;
	-o-text-overflow: ellipsis;
	   text-overflow: ellipsis;
	-webkit-box-shadow: none !important;
	   -moz-box-shadow: none !important;
		    box-shadow: none !important;
	-webkit-box-sizing: border-box;
	   -moz-box-sizing: border-box;
			box-sizing: border-box;
}

@media (max-width: 767px) {
	.field .input-wrap input,
	.field .input-wrap .placeholder {
		padding-left: 10px;
	}
}


/* ************************************************************************** */

.field .textarea-wrap {
	position: relative;
	z-index: 1;
	border: 1px solid #cbcbcb;	background: #ffffff;
	-webkit-border-radius: 5px;
	 -khtml-border-radius: 5px;
	   -moz-border-radius: 5px;
	     -o-border-radius: 5px;
	        border-radius: 5px;
}
.disabled .textarea-wrap,
.textarea-wrap.disabled {	
	background: #fcfcfc;
}
.disabled .textarea-wrap::after,
.textarea-wrap.disabled::after {
	display: block;
	position: absolute;
	content: '';
	z-index: 3;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;	
}
.field.error .textarea-wrap {
}
.field .textarea-wrap .placeholder {	        
	display: inline-block;
	background: none;
	font: normal 16px/22px "Lato-Regular";
	position: absolute;
	z-index: 1;
	width: 0;
	padding-left: 15px;
	padding-right: 3px;
	top: 8px;
	left: 0;
	height: 20px;
	white-space: nowrap;
	color: #a8a8a8;
	text-align: right;
	-webkit-transition: all 0.3s ease 0s;
	   -moz-transition: all 0.3s ease 0s;
	    -ms-transition: all 0.3s ease 0s;
	     -o-transition: all 0.3s ease 0s;
	        transition: all 0.3s ease 0s;
}
.field .textarea-wrap .placeholder.small {
	font-size: 0;
	opacity: 0;
}

.disabled .textarea-wrap .placeholder,
.textarea-wrap.disabled .placeholder {
	color: #dcdcdc;	
}

.field .textarea-wrap textarea {
	display: block;
	width: 100%;	
	position: relative;
	z-index: 2;
	background: none;
	font: normal 16px/22px "Lato-Regular";
	color: #3b3b3b;
	padding: 8px 15px;
	-webkit-box-shadow: none !important;
	   -moz-box-shadow: none !important;
		    box-shadow: none !important;
	-webkit-box-sizing: border-box;
	   -moz-box-sizing: border-box;
			box-sizing: border-box;
}



/* ************************************************************************** */

.radio-wrap,
.checkbox-wrap {
	display: block;
	position: relative;
	margin-bottom: 5px;
}
.radio-wrap input[type="radio"],
.checkbox-wrap input[type="checkbox"] {
	position: absolute;
	top: 0;
	left: 0;
	height: 20px;
	z-index: 2; 
	width: 100%;
	overflow: hidden;
	margin: 0;
	padding: 0;
	border: 0; 
	outline: none;
	opacity: 0;
	cursor: pointer;       
	
}
.radio-wrap input[type="radio"] + label,
.checkbox-wrap input[type="checkbox"] + label {
	display: block;
	position: relative;
	z-index: 1;
	padding-left: 25px;	
	cursor: pointer;
	min-height: 20px;
	font: 13px/1em "Lato-Regular";
	color: #3b3b3b;		 
}
.radio-wrap input[type="radio"] + label:before,
.checkbox-wrap input[type="checkbox"] + label:before {
	display: block;
	width: 13px;
	height: 13px;
	content: " ";
	vertical-align: middle;
	position: absolute;
	left: 0;
	top: 0;
	background-image: url(../img/spr-icons.png);
	background-repeat: no-repeat;
	-webkit-background-size: 1000px auto;
	   -moz-background-size: 1000px auto;
		 -o-background-size: 1000px auto;
			background-size: 1000px auto;
}
.radio-wrap input[type="radio"] + label:before {
	background-position: -625px -75px;	
}
.checkbox-wrap input[type="checkbox"] + label:before {
	background-position: -625px -75px;
}
.radio-wrap input[type="radio"] + label:after,
.checkbox-wrap input[type="checkbox"] + label:after { 	
	display: block;
	width: 9px;
	height: 9px;
	content: "";
	vertical-align: middle;
	position: absolute;
	left: 2px;
	top: 2px;
	background-image: url(../img/spr-icons.png);
	background-repeat: no-repeat;
	-webkit-background-size: 1000px auto;
	   -moz-background-size: 1000px auto;
		 -o-background-size: 1000px auto;
			background-size: 1000px auto;
	-webkit-transform: scale(0); 
	   -moz-transform: scale(0); 
	    -ms-transform: scale(0); 
	     -o-transform: scale(0); 
	        transform: scale(0);
	-webkit-transition: all 0.3s ease 0s;
	   -moz-transition: all 0.3s ease 0s;
	    -ms-transition: all 0.3s ease 0s;
	     -o-transition: all 0.3s ease 0s;
	        transition: all 0.3s ease 0s;
}
.radio-wrap input[type="radio"] + label:after {
	background-position: -650px -75px;	
}
.checkbox-wrap input[type="checkbox"] + label:after {
	background-position: -650px -75px;	
}
.radio-wrap input[type="radio"]:checked + label:after,
.checkbox-wrap input[type="checkbox"]:checked + label:after { 	
	-webkit-transform: scale(1); 
	   -moz-transform: scale(1); 
	    -ms-transform: scale(1); 
	     -o-transform: scale(0); 
	        transform: scale(1);	
}

/* ************************************************************************** */

.radio-wrap-v2,
.checkbox-wrap-v2 {
	display: block;
	position: relative;
	margin-bottom: 10px;
}
.radio-wrap-v2 input[type="radio"],
.checkbox-wrap-v2 input[type="checkbox"] {
	position: absolute;
	top: 0;
	left: 0;
	height: 20px;
	z-index: 2; 
	width: 100%;
	overflow: hidden;
	margin: 0;
	padding: 0;
	border: 0; 
	outline: none;
	opacity: 0;
	cursor: pointer;
}
.radio-wrap-v2 input[type="radio"] + label,
.checkbox-wrap-v2 input[type="checkbox"] + label {
	display: block;
	position: relative;
	z-index: 1;
	padding-left: 25px;	
	cursor: pointer;
	min-height: 20px;
	font: 14px/1.2em "Lato-Regular";
	color: #3b3b3b;	
	-webkit-transition: color 0.3s ease 0s;
	   -moz-transition: color 0.3s ease 0s;
	    -ms-transition: color 0.3s ease 0s;
	     -o-transition: color 0.3s ease 0s;
	        transition: color 0.3s ease 0s;
} 
.radio-wrap-v2:hover input[type="radio"] + label,
.checkbox-wrap-v2:hover input[type="checkbox"] + label {
	color: #199694;
}
.radio-wrap-v2 input[type="radio"] + label:before,
.checkbox-wrap-v2 input[type="checkbox"] + label:before {
	display: block;
	width: 17px;
	height: 17px;
	content: " ";
	vertical-align: middle;
	position: absolute;
	left: 0;
	top: 0;
	background-image: url(../img/spr-icons.png);
	background-repeat: no-repeat;
	-webkit-background-size: 1000px auto;
	   -moz-background-size: 1000px auto;
		 -o-background-size: 1000px auto;
			background-size: 1000px auto;
}
.radio-wrap-v2 input[type="radio"] + label:before {
	background-position: -575px -75px;	
}
.checkbox-wrap-v2 input[type="checkbox"] + label:before {
	background-position: -575px -75px;
}
.radio-wrap-v2 input[type="radio"] + label:after,
.checkbox-wrap-v2 input[type="checkbox"] + label:after { 	
	display: block;
	width: 10px;
	height: 8px;
	content: "";
	vertical-align: middle;
	position: absolute;
	left: 4px;
	top: 4px;
	background-image: url(../img/spr-icons.png);
	background-repeat: no-repeat;
	-webkit-background-size: 1000px auto;
	   -moz-background-size: 1000px auto;
		 -o-background-size: 1000px auto;
			background-size: 1000px auto;
	-webkit-transform: scale(0); 
	   -moz-transform: scale(0); 
	    -ms-transform: scale(0); 
	     -o-transform: scale(0); 
	        transform: scale(0);
	-webkit-transition: all 0.3s ease 0s;
	   -moz-transition: all 0.3s ease 0s;
	    -ms-transition: all 0.3s ease 0s;
	     -o-transition: all 0.3s ease 0s;
	        transition: all 0.3s ease 0s;
}
.radio-wrap-v2 input[type="radio"] + label:after {
	background-position: -600px -75px;	
}
.checkbox-wrap-v2 input[type="checkbox"] + label:after {
	background-position: -600px -75px;	
} 
.radio-wrap-v2 input[type="radio"]:checked + label:after,
.checkbox-wrap-v2 input[type="checkbox"]:checked + label:after { 	
	-webkit-transform: scale(1); 
	   -moz-transform: scale(1); 
	    -ms-transform: scale(1); 
	     -o-transform: scale(0); 
	        transform: scale(1);	
}

/* ************************************************************************** */



.field .select-wrap {
	position: relative;
	text-align: left;
	z-index: 1;	
	height: 43px;
	border: 1px solid #cbcbcb;
	background: #ffffff;
	-webkit-border-radius: 5px;
	 -khtml-border-radius: 5px;
	   -moz-border-radius: 5px;
	     -o-border-radius: 5px;
	        border-radius: 5px;	        
	-webkit-transition: all 0.3s ease 0s;
	   -moz-transition: all 0.3s ease 0s;
	    -ms-transition: all 0.3s ease 0s;
	     -o-transition: all 0.3s ease 0s;
	        transition: all 0.3s ease 0s;
}
.field .select-wrap > .title {
	font-size: 0;
	line-height: 0;
	letter-spacing: -1px;	
	position: absolute;
	left: 0;
	top: 0;
	vertical-align: top;
	white-space: nowrap;
	width: 130px;
	height: 100%;
	background: #f3f3f3;
	border-right: 1px solid #e5e8eb;
	text-align: left;
	-webkit-border-radius: 4px 0 0 4px;
	 -khtml-border-radius: 4px 0 0 4px;
	   -moz-border-radius: 4px 0 0 4px;
	     -o-border-radius: 4px 0 0 4px;
	        border-radius: 4px 0 0 4px;
}
.field .select-wrap > .title::before {
	display: inline-block;
	content: '';
	width: 0;
	height: 100%;
	vertical-align: middle;
}
.field .select-wrap > .title .i {
	display: inline-block;
	width: 40px;
	text-align: center;
	vertical-align: middle;
}
.field .select-wrap > .title .t {
	display: inline-block;
	position: relative;
	padding-left: 15px;
	vertical-align: middle;
	letter-spacing: normal;
	white-space: normal;
	font: normal 14px/1.4em "Montserrat-SemiBold";
	color: #3b3b3b;
}
.field .select-wrap > .title .i + .t {
	padding-left: 0;
}
.field .select-wrap > .inner {
	display: block;
	letter-spacing: normal;
	white-space: normal;
	position: relative;
}
.field .select-wrap > .inner > .select {
	height: 43px;
}
.field .select-wrap > .inner > .select .v {
	height: 100%;
	padding-left: 15px;
	margin-right: 30px;
	font: normal 16px/39px "Lato-Regular";
	color: #3b3b3b;
	white-space: nowrap;
	overflow: hidden;
	-o-text-overflow: ellipsis;
	   text-overflow: ellipsis;
}
@media (max-width: 767px) {
	.field .select-wrap > .inner > .select .v {
		padding-left: 10px;
	}
}

/* ************************************************************************** */

.field .multiselect-wrap {
	position: relative;
	text-align: left;
	z-index: 2;
	height: 43px;
	border: 1px solid #cbcbcb;
	background: #ffffff;
	-webkit-border-radius: 5px;
	 -khtml-border-radius: 5px;
	   -moz-border-radius: 5px;
	     -o-border-radius: 5px;
	        border-radius: 5px;
	-webkit-transition: all 0.3s ease 0s;
	   -moz-transition: all 0.3s ease 0s;
	    -ms-transition: all 0.3s ease 0s;
	     -o-transition: all 0.3s ease 0s;
	        transition: all 0.3s ease 0s;
}
.field .multiselect-wrap > .title {
	font-size: 0;
	line-height: 0;
	letter-spacing: -1px;
	position: absolute;
	left: 0;
	top: 0;
	vertical-align: top;
	white-space: nowrap;
	width: 130px;
	height: 100%;
	background: #f3f3f3;
	border-right: 1px solid #e5e8eb;
	text-align: left;
	-webkit-border-radius: 4px 0 0 4px;
	 -khtml-border-radius: 4px 0 0 4px;
	   -moz-border-radius: 4px 0 0 4px;
	     -o-border-radius: 4px 0 0 4px;
	        border-radius: 4px 0 0 4px;
}
.field .multiselect-wrap > .title::before {
	display: inline-block;
	content: '';
	width: 0;
	height: 100%;
	vertical-align: middle;
}
.field .multiselect-wrap > .title .i {
	display: inline-block;
	width: 40px;
	text-align: center;
	vertical-align: middle;
}
.field .multiselect-wrap > .title .t {
	display: inline-block;
	position: relative;
	padding-left: 15px;
	vertical-align: middle;
	letter-spacing: normal;
	white-space: normal;
	font: normal 14px/1.4em "Montserrat-SemiBold";
	color: #3b3b3b;
}
.field .multiselect-wrap > .title .i + .t {
	padding-left: 0;
}
.field .multiselect-wrap > .inner {
	display: block;
	letter-spacing: normal;
	white-space: normal;
	position: relative;
	height: 100%;
}
.field .multiselect-wrap .select-wrap {
	float: left;
	margin: 4px 6px;
	height: 33px;
	width: 90px;
}
.field .multiselect-wrap .select-wrap.dd {
	z-index: 3;
}
.field .multiselect-wrap .select-wrap.mm {
	z-index: 2;
}
.field .multiselect-wrap .select-wrap.yyyy {
	z-index: 1;
}
.field .multiselect-wrap .select-wrap .noos-select {
	min-width: 90px;
}
.field .multiselect-wrap .select-wrap > .inner > .select {
	height: 33px;
}
.field .multiselect-wrap .select-wrap> .inner > .select .v {
	line-height: 28px;
}












