.ff-form-steps {
	display: none;
	transition: all .3s ease;
	opacity: 0;
    gap: 20px;
	background: #fff;
	border-radius: 60px;
	/* box-shadow: 0px 10px 33px 0px rgba(2, 6, 19, 0.09); */
	padding: 10px 15px 10px 35px
}
.ff-form-steps.init {
    display: flex;
    opacity: 1;
}

.ff-form-steps .gform_wrapper {
    flex: 1;
}

.ff-form-steps .next-btn,
.ff-form-steps .back-btn {
	display: inline-block;
	width: 100%;
	min-width: 120px;
	/*height: 16px;
	background-size: 100%; */
	cursor: pointer;
	outline: none;
	color: #fff;
	padding: 16.5px 35px;
	height: 50px;
	font-size: 16px;
	font-weight: 700;
	text-align: center;
	border-radius: 30px;
	background-color: #F36B2D;
	line-height: 1;
	transition: .3s;
}
.ff-form-steps .back-btn{
	display: none;
}
/* .ff-form-steps .next-btn {
	background-image: url(../images/arrow-right.svg);
	background-image: url(../images/arrow-right-white.svg);
	background-repeat: no-repeat;
	background-position: center;
	background-size: 20px 18px;
	border-radius: 30px;
	width: 50px;
	height: 50px;
	
	transition: .3s;
	
} */
.ff-form-steps .next-btn:hover,
.ff-form-steps .back-btn:hover{
	transition-timing-function: ease-in-out;
	background-color: #FD883A;
}

/* .ff-form-steps .back-btn {
	background-image: url(../images/arrow-left.svg); 
	display: none; 
    font-size: 0; 
} */
.ff-form-steps .gform_fields{
	display: block;
}
.ff-form-steps .gform_heading,
.ff-form-steps .gfield_label{
	display: none;
}
.ff-form-steps input[type="text"], 
.ff-form-steps input[type="email"], 
.ff-form-steps input[type="tel"]{
	padding: 15px 0px;
	border: 0;
	background: #fff;
	color: #37312E;
	font-size: 17px;
	font-family: 'Poppins', sans-serif;
	
}

.ff-form-steps input:-webkit-autofill,
.ff-form-steps input:-webkit-autofill:focus {
  transition: background-color 0s 600000s, color 0s 600000s;
}

.ff-form-steps .progress-indicator{
	font-weight: 700;
	font-family: 'Poppins', sans-serif;
	font-size: 17px;
}
.ff-form-steps .gform_footer {
    display: none;
    height: 0;
    opacity: 0;
    pointer-events: none;
    position: absolute;
}
.ff-form-steps i.form-submitting {
	position: absolute;
	margin-left: 10px;
}
.ff-form-steps .validation-msg {
	font-size: 12px;
    font-weight: 700;
    color: #FA7D5A;
    position: absolute;
    bottom: -5px;
    left: 0;
}
.ff-form-steps .custom-footer {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	display: flex;
	gap: 20px;
	flex-shrink: 0;
}
.ff-form-steps  .custom-submit-btn {
	/* margin-left: 20px; */
	display: none;
}

.ff-form-steps.last-step .custom-submit-btn {
    display: block;
}
.ff-form-steps.last-step .custom-submit-btn:hover{
	background: #FD883A;
	border-color: #FD883A;
	color: #fff;
}
.ff-form-steps.last-step .next-btn {
    display: none;
}

.form-submitted .custom-footer,
.form-submitted .progress-indicator {
	display: none;
}

.ff-form-steps .custom-footer .s2 {
    display: flex;
    align-items: center;
    gap: 10px;
}

/*Placeholder text color*/
.ff-form-steps input::-webkit-input-placeholder {
    opacity: 1;
    color: #37312E;
} 
.ff-form-steps input:-moz-placeholder {
    opacity: 1;
    color: #37312E;
}
.ff-form-steps input::-moz-placeholder {
    opacity: 1;
    color: #37312E;
}
.ff-form-steps input:-ms-input-placeholder {
    opacity: 1;
    color: #37312E;
}


@keyframes flip-in-ver-left {
	0% { -webkit-transform: rotateY(80deg); transform: rotateY(80deg); opacity: 0; }
	100% { -webkit-transform: rotateY(0); transform: rotateY(0); opacity: 1; }
}
.flip-in-ver-left {
	-webkit-animation: flip-in-ver-left 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
	        animation: flip-in-ver-left 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}

@media(max-width: 767px){
	.ff-form-steps {
		background: transparent;
		border-radius: 0;
		box-shadow: none;
		padding: 0px
	}
	.ff-form-steps.init {
	    display: block;
	}

	.ff-form-steps input{
		font-size: 18px !important;;
		box-shadow: 0px 10px 33px 0px rgba(2, 6, 19, 0.09);
		padding: 20px !important;
	}
	.ff-form-steps .custom-footer {
		justify-content: space-between;
		margin-top: 15px;
	}

	.ff-form-steps .validation-msg {
		font-size: 11px;
		bottom: -1px;
		left: 20px;
	}
}