div.zipCodeField
{
	position: relative;
	margin: 0px;
	padding: 0px;
}

div.zipCodeDescription
{
	display: none;
	position: absolute;
	top: 2px;
	left: 370px;
	width: 230px;
	color: red !important;
	background-color: white;
	border: 1px solid #ccc;
	padding: 5px;
}

div.zipCodeDescription *
{
	margin: 0px;
}

div.row_ElementTextDisabled {
	display: none;
}

/****** FORMTAB STEPS ******/
.formtabSteps {
	margin-left: 15px;
	padding-right: 82px;
}

.formtabSteps .formtabStep {
	position: relative;
	margin-bottom: 30px;
	padding: 0px 15px 15px 4px !important;
	border-bottom: 1px solid #d7d7d7;
}

.formtabSteps .row .formtabStep:last-child {
	border-bottom-color: transparent;
} 

.formtabSteps .formtabStep .formtabStepNumber {
	font-weight: bold;
}

.formtabSteps .formtabStep:before {
	position: absolute;
	left: 0px;
	bottom: -8px;
	width: 16px;
	height: 16px;
	border-radius: 8px;
	background-color: #d7d7d7;
	content: " ";
	transition: background-color 0.5s ease;
}

.formtabSteps .formtabStep.active:before,
.formtabSteps .formtabStep.completed:before {
	background-color: #b40068;
}

.formtabSteps .formtabStepProgress {
	position: absolute;
	left: 16px;
	bottom: -1px;
	width: 0px;
	height: 1px;
	overflow: hidden;
	background-color: #b40068;
	content: " ";
}

.formtab:not(.active) {
	display: none;
}

.formtab .formtabButtonPrev {
	position: relative;
	display: inline-block;
	padding-left: 15px;
}

.formtab .formtabButtonPrev:before {
	position: absolute;
	top: 0px;
	left: 0px;
	font-family: FontAwesome;
	content: "\f104";
}

.formtab .tabElementLabel {
	text-align: left !important;
}

.formtab .formtabSummary {
	margin-bottom: 15px;
}

.formtab .formtabSummary .row {
	padding-top: 0px !important;
	padding-bottom: 5px !important;
}

.formtab .formtabSummary .tabElementLabel {
	font-weight: bold;
}

@media (max-width: 767px) {
	.formtabSteps {
		padding-right: 0px;
	}
	
	.formtabSteps .formtabStep:before {
		bottom: -14px;
		width: 28px;
		height: 28px;
		border-radius: 14px;
	}

	.formtabSteps .formtabStep .formtabStepNumber {
		position: absolute;
		top: 3px;
		left: 9px;
		font-size: 16px;
		color: #fff;
	}

	.formtab .formtabButtonPrev {
		margin-bottom: 15px;
	}

	.formtab .formtabSummary .row {
		padding-bottom: 15px !important;
	}
}

@media (min-width: 768px) {
	.formtabSteps .formtabStepNumberWrapper {
		display: block;
		height: 26px;
		overflow: hidden;
	}
}

.formtabSubmitButton {
	float: right;
}

/****** Image options ******/
.dynamicForm .imageOptionWrapper.col-xs-12, .dynamicForm .imageOptionWrapper.col-sm-8 {
	padding-right: 15px;
}

.dynamicForm .imageOptionWrapper label {
	display: block;
	cursor: pointer;
}

.dynamicForm .imageOptionWrapper .radio, .dynamicForm .imageOptionWrapper .checkbox {
	position: absolute;
	top: 0px;
	left: -9999px;
	opacity: 0;
}

.dynamicForm .imageOption {
	display: block;
	position: relative;
	margin-bottom: 15px;
	padding: 15px;
    border: 1px solid #BFBFBF;
    border-radius: 5px;
	background-color: #fff;

	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

@media (max-width: 767px) {
	.dynamicForm .imageOption {
		text-align: center;
	}
}

@media (min-width: 768px) {
	.dynamicForm .imageOption {
		margin-bottom: 30px;
	}
}

.dynamicForm .imageOptionWrapper label:hover .imageOption, .dynamicForm .imageOptionWrapper label:focus .imageOption,
.dynamicForm .imageOption.selected, .dynamicForm .imageOption.checked {
	border-color: #A4BB54;
}

.dynamicForm .imageOption.selected:after,
.dynamicForm .imageOption.checked:after {
	position: absolute;
	top: 0px;
	right: -12px;
	width: 24px;
	height: 24px;
	margin-top: -12px;
	margin-left: -12px;
	padding-top: 0px;
	padding-left: 1px;
	background-color: #A4BB54;
	border-radius: 12px;
	font-family: "FontAwesome";
	color: #ffffff;
	content: "\f00c";
}

@media (min-width: 768px) {
	.dynamicForm .imageOption.selected:after,
	.dynamicForm .imageOption.checked:after { 
		padding-left: 5px;
	}

	.dynamicForm .imageOption img {
		position: relative;
		top: 50%;
		left: 50%;
		-webkit-transform: translate(-50% -50%);
		transform: translate(-50%, -50%);	
	}
}

.summaryImageWrapper {
	padding-right: 15px !important;
}

.summaryImage {
	display: block;
	position: relative;
	margin-bottom: 15px;
	height: 100px;
	padding: 15px !important;
	border: 1px solid #BFBFBF;
	border-radius: 5px;
}

@media (min-width: 768px) {
	.summaryImage {
		margin-bottom: 30px;
	}
}

.summaryImage img {
	position: relative;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50% -50%);
	transform: translate(-50%, -50%);
	max-height: 70px;
}