.quote-form .steps-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
   -ms-flex-pack: justify;
  justify-content: space-between;
  margin: 0 0 30px 0;
  position: relative;
}
.quote-form .steps-container::after {
  content: "";
  position: absolute;
  top: 28%;
  left: 15%;
  height: 5px;
  width: 70%;
  border-radius: 3px;
  background: #f7f7f7;
}
.quote-form .steps-container .step {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 33.3333%;
    flex: 0 0 33.3333%;
    max-width: 33.3333%;
    text-align: center;
    position: relative;
    z-index: 2;
} 
.quote-form .steps-container .step .number {
    width: 56px;
    height: 56px;
    background: #e2e2e2;
    border: 3px solid #FFFFFF; 
    border-radius: 100%;
    position: relative;
    overflow: hidden;
    margin: 0 auto 15px;
}
@media (min-width: 768px) {
    .quote-form .steps-container .step .number {
        width: 64px;
        height: 64px;
    }
}
.quote-form .steps-container .step .number span {
    position: absolute;
    top: 51%;
    left: 49%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    color: #FFFFFF;
    font-size: 20px; 
    font-weight: bold;
    
}
@media (min-width: 768px) { 
    .quote-form .steps-container .step .number span {
        font-size: 30px; 
    }
}
.quote-form .steps-container .step .step-label {
    font-size:16px; 
    font-weight: 500;
    color: #e2e2e2;
    width: 70%;
    margin: 0 auto;
    min-height: 32px;
}
@media (min-width: 768px) {
    .quote-form .steps-container .step .step-label {
        width: auto;
        min-height: unset;
        font-size: 20px; 
    }
}
.quote-form .steps-container .step.active .step-label {
    color: #20aa97;
    font-weight: 600;
}
.quote-form .steps-container .step.active .number {
    background-color: #f4c756;
}
.quote-form .clickdform {
	width: 100%;
	background: #FFFFFF;
	border: 1px solid #EEEEEE;
	border-radius: 10px;
	padding: 30px 15px 30px 15px !important;
	-webkit-box-shadow: 0px 4px 30px rgba(0, 130, 111, 0.05);
	box-shadow: 0px 4px 30px rgba(0, 130, 111, 0.05);
}
.quote-form .clickdform h4 {
    font-family: "VAGRoundedLT-Bold";
    font-size: 24px;
    color: #444444;
    margin-bottom: 0;
    margin-top: 15px;
}
.quote-form .clickdform .responsiveRow {
    margin: 5px 0 0 0;
    padding: 10px 0;
    border-top: 1px solid #F3F3F3;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
.quote-form .clickdform .responsiveRow:first-of-type {
    border-top: none;
    margin-top: 0;
    padding-top: 0;
}
.quote-form .clickdform .responsiveRow .responsiveCell {
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 100%;
    position: relative;
    width: 100%;
}
.quote-form .clickdform .row {
    margin: 0;
}
.quote-form .clickdform .row>* {
    padding-left: 0;
    padding-right: 0;
}
.quote-form .clickdform .responsiveRow .responsiveCell span {
    font-size: 18px;
    margin-bottom: 5px;
    display: block;
}
.quote-form .clickdform .responsiveRow .responsiveCell input[type=text], .quote-form .clickdform .responsiveRow .responsiveCell input[type=tel] {
    background: #FBFBFB;
    width: 100%;
    outline: none;
    border: 1px solid #DEDEDE;
    border-radius: 10px;
    font-size: 20px;
    font-weight: bold;
    padding: 15px;
    -webkit-box-shadow: 0px 4px 30px rgba(0, 130, 111, 0);
    box-shadow: 0px 4px 30px rgba(0, 130, 111, 0);
    -webkit-transition: all 0.12s ease-out;
    -o-transition: all 0.12s ease-out;
    transition: all 0.12s ease-out;
    -webkit-appearance: none;
    color: #444444;
    font-family: "VAGRoundedLT-Light";
}
section.quote-form .clickdform .responsiveRow .responsiveCell input[type=text]:active, 
section.quote-form .clickdform .responsiveRow .responsiveCell input[type=text]:focus {
	outline: none;
	border: 1px solid #1D9181;
	-webkit-box-shadow: 0px 4px 30px rgba(0, 130, 111, 0.15);
	box-shadow: 0px 4px 30px rgba(0, 130, 111, 0.15);
	-webkit-transition: all 0.12s ease-in;
	-o-transition: all 0.12s ease-in;
	transition: all 0.12s ease-in;
}
section.quote-form .clickdform .responsiveRow .responsiveCell input[type=tel]:active, 
section.quote-form .clickdform .responsiveRow .responsiveCell input[type=tel]:focus {
	outline: none;
	border: 1px solid #1D9181;
	-webkit-box-shadow: 0px 4px 30px rgba(0, 130, 111, 0.15);
	box-shadow: 0px 4px 30px rgba(0, 130, 111, 0.15);
	-webkit-transition: all 0.12s ease-in;
	-o-transition: all 0.12s ease-in;
	transition: all 0.12s ease-in;
}
.quote-form .clickdform .responsiveRow .responsiveCell input[type=text]::-webkit-input-placeholder,
.quote-form .clickdform .responsiveRow .responsiveCell input[type=tel]::-webkit-input-placeholder {
	font-weight: normal;
	font-size: 20px;
	opacity: 0.5;
	vertical-align: middle;
	text-transform: capitalize;
}
.quote-form .clickdform .responsiveRow .responsiveCell input[type=text]::-moz-placeholder,
.quote-form .clickdform .responsiveRow .responsiveCell input[type=tel]::-moz-placeholder {
	font-weight: normal;
	font-size: 20px;
	opacity: 0.5;
	vertical-align: middle;
	text-transform: capitalize;
}
.quote-form .clickdform .responsiveRow .responsiveCell input[type=text]:-ms-input-placeholder,
.quote-form .clickdform .responsiveRow .responsiveCell input[type=tel]:-ms-input-placeholder {
	font-weight: normal;
	font-size: 20px;
	opacity: 0.5;
	vertical-align: middle;
	text-transform: capitalize;
}
.quote-form .clickdform .responsiveRow .responsiveCell input[type=text]::-ms-input-placeholder,
.quote-form .clickdform .responsiveRow .responsiveCell input[type=tel]::-ms-input-placeholder {
	font-weight: normal;
	font-size: 20px;
	opacity: 0.5;
	vertical-align: middle;
	text-transform: capitalize;
}
.quote-form .clickdform .responsiveRow .responsiveCell input[type=text]::placeholder,
.quote-form .clickdform .responsiveRow .responsiveCell input[type=tel]::placeholder {
	font-weight: normal;
	font-size: 20px;
	opacity: 0.5;
	vertical-align: middle;
	text-transform: capitalize;
}
.quote-form .clickdform .responsiveRow .responsiveCell .buttonContainer {
	width: 100%;
	min-width: 100px;
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-ms-flex-direction: row;
	flex-direction: row;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: flex-start;
	flex-wrap: wrap;
}
.quote-form .clickdform .responsiveRow .responsiveCell .buttonContainer input {
	position: relative;
	right: 0;
	width: calc(100% + 30px);
	min-width: 130px;
	padding: 0 30px 0 15px;
	margin: 0;
	background: transparent;
	border: none;
	color: #FFFFFF;
	font-size: 20px;
	letter-spacing: 1px;
	z-index: 10;
	height: 70px;
	font-weight: bold;
	-webkit-transition: all 0.2s;
	-o-transition: all 0.2s;
	transition: all 0.2s;
	overflow: hidden;
	background-size: cover;
	background-color: transparent;
	border-radius: 10px;
}
.quote-form .clickdform .responsiveRow .responsiveCell .buttonContainer input:hover {
	-webkit-transition: all 0.2s;
	-o-transition: all 0.2s;
	transition: all 0.2s;
}
.quote-form .clickdform .responsiveRow .responsiveCell .buttonContainer input:active, .quote-form .clickdform .responsiveRow .responsiveCell .buttonContainer input:focus {
	outline: none;
	border: none;
}
.quote-form .clickdform .responsiveRow .responsiveCell .buttonContainer input:first-of-type {
	-webkit-box-ordinal-group: 1;
	-ms-flex-order: 1;
	order: 1;
	background-image: url("../assets/yellow-btn-bg.svg");
	background-position: right center;
}

.quote-form .clickdform .responsiveRow .responsiveCell .buttonContainer input#btnSubmitArrange {
	-webkit-box-ordinal-group: 1;
	-ms-flex-order: 1;
	order: 1;
	background-image: url("../assets/yellow-btn-bg.svg");
	background-position: right center;
} 

.quote-form .clickdform .responsiveRow .responsiveCell .buttonContainer input:last-of-type {
	-webkit-box-ordinal-group: 2;
	-ms-flex-order: 1;
	order: 1;
	background-position: left center;
	padding: 0px 0px;
	color: #C4C4C4;
	min-width: unset;
}
.quote-form .clickdform .responsiveRow .responsiveCell .buttonContainer input:last-of-type:hover {
	color: #1D9181;
	right: 5px;
}
.quote-form .clickdform .responsiveRow .responsiveCell .validation_error {
	display: block;
	margin-top: 5px;
    color: #f00;
	font-weight: bold;
}
.hide {
    display: none !important;
}
.quote-form .clickdform .row .summary {
     display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    background: #f3fdfc;
    border: 1px solid #20aa97!important;
    border-radius: 10px;
    margin-bottom: 15px;
}
.quote-form .clickdform .confirmbox .row .summary {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    background: #f3fdfc;
    border: 1px solid #20aa97!important;
    border-radius: 10px;
    margin-bottom: 15px;
}
.quote-form .clickdform .responsiveRow .responsiveCell .radio-group {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: 0 -15px -15px -15px;
}
.quote-form .clickdform .responsiveRow .responsiveCell .radio-group .radio-item {
    -ms-flex: 0 0 33.333333%;
    -webkit-box-flex: 0;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
    padding: 0 10px;
    margin-bottom: 10px;
    position: relative;
}
.quote-form .clickdform .responsiveRow .responsiveCell .radio-group .radio-item input[type=radio] {
	position: absolute;
	top: 0;
	left: 0;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	opacity: 0;
	margin: 0;
	height: 0;
	width: 0;
	font-size: 0;
	line-height: 0;
}
.quote-form .clickdform .responsiveRow .responsiveCell .radio-group .radio-item label {
	background: #FBFBFB;
	border: 1px solid #E2E2E2;
	overflow: hidden;
	border-radius: 10px;
	padding: 15px;
	text-align: center;
	margin: 0;
	-webkit-transition: all 0.12s ease-in-out;
	-o-transition: all 0.12s ease-in-out;
	transition: all 0.12s ease-in-out;
	width: 100%;
	height: 100%;
	min-height: 50px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
    font-weight: bold; 
}
.quote-form .clickdform .responsiveRow .responsiveCell .radio-group .radio-item label img {
	width: 30px;
	height: 30px;
	margin-bottom: 10px;
}
.quote-form .clickdform .responsiveRow .responsiveCell .radio-group .radio-item label span {
	display: block;
	color: #444444;
	margin: 0;
	font-size: 14px;
	line-height: 100%;
}
.quote-form .clickdform .responsiveRow .responsiveCell .radio-group .radio-item label:hover {
	-webkit-transition: all 0.12s ease-in-out;
	-o-transition: all 0.12s ease-in-out;
	transition: all 0.12s ease-in-out;
	cursor: pointer;
	background-color: #f1f1f1;
	border-color: #cecece;
	-webkit-box-shadow: 0px 4px 30px rgba(0, 130, 111, 0.05);
	box-shadow: 0px 4px 30px rgba(0, 130, 111, 0.05);
}
.quote-form .clickdform .responsiveRow .responsiveCell .radio-group .radio-item input[type=radio]:checked~label {
	-webkit-transition: all 0.12s ease-in;
	-o-transition: all 0.12s ease-in;
	transition: all 0.12s ease-in;
	background: #f3fdfc;
	border-color: #20aa97;
	-webkit-box-shadow: 0px 4px 30px rgba(0, 130, 111, 0.15);
	box-shadow: 0px 4px 30px rgba(0, 130, 111, 0.15);
}
.quote-form .clickdform .responsiveRow .responsiveCell .radio-group.number-select .radio-item {
	-ms-flex: 0 0 25%;
	-webkit-box-flex: 0;
	flex: 0 0 25%;
	max-width: 12%;
}
.quote-form .clickdform .responsiveRow .responsiveCell .radio-group.number-select .radio-item label {
	min-height: 20px;
}
.quote-form .clickdform .responsiveRow .responsiveCell .radio-group.number-select .radio-item label span {
	font-size: 12px;
}
.quote-form .clickdform .responsiveRow .responsiveCell .radio-group.two-options .radio-item label span {
	font-size: 14px;
}
.quote-form .clickdform .row .summary img {
    width: 50px;
}
.quote-form .clickdform .row .summary .details {
    margin-left: 15px;
}
.quote-form .clickdform .row .summary .details p {
    margin-bottom: 0;
}
.quote-form .clickdform .responsiveRow .responsiveCell:not(:first-child) {
    margin-left: 15px;
}
.quote-form .clickdform .responsiveRow .responsiveCell.emptyCell {
    display: none;
}
.quote-form .clickdform .responsiveRow:last-of-type {
    border-top: none;
    padding-bottom: 0;
    margin-bottom: 0;
}
.sell-fast-landing section.quote-form .clickdform .responsiveRow .responsiveCell input[type=text], 
section.quote-form .clickdform .responsiveRow .responsiveCell input[type=tel] {
    border: 3px solid rgba(32, 170, 151, .5);
}