.ff-form-steps {
	display: none;
	transition: all .3s ease;
	opacity: 0;
}
.ff-form-steps.init {
	display: block;
	opacity: 1;
}

.ff-form-steps .next-btn,
.ff-form-steps .back-btn {
	display: inline-block;
	width: 30px;
	height: 16px;
	background-size: 100%;
	cursor: pointer;
	outline: none;
}

/*.ff-form-steps .next-btn:before{
	content: 'Subscribe';
	font-size: 15px;
	font-weight: bold;
	color: #fff;

	-webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.ff-form-steps .next-btn {
background-image: url(../images/arrow-right.svg);
	position: absolute;
	right: 2px;
	top: 0px;
	background: #009FB1;
	width: 100%;
	max-width: 120px;
	text-align: center;
	padding: 25px 20px;
	border-radius: 25px;
	line-height: 1px;
}
.ff-form-steps .next-btn:hover{
	background: #FDB913;
}

.ff-form-steps .next-btn:hover:before{
	color: #014153;
}*/

.ff-form-steps .next-btn {
	position: absolute;
	right: 2px;
	top: 0px;
	background-color: #009FB1;
	background-image: url(../images/arrow-right-white.svg);
	background-size: 30px;
	background-position: center;
	background-repeat: no-repeat;
	width: 100%;
	max-width: 120px;
	text-align: center;
	padding: 25px 20px;
	border-radius: 25px;
	line-height: 1px;

	-webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.ff-form-steps .next-btn:hover {
	background-color: #FDB913;
}

.ff-form-steps .gform_fields li:nth-child(3) .next-btn:before{
	content: 'Subscribe';
	font-size: 15px;
	font-weight: bold;
	color: #fff;

	-webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.ff-form-steps .gform_fields li:nth-child(3) .next-btn {
    background-image: url(../images/arrow-right.svg);
	position: absolute;
	right: 2px;
	top: 0px;
	background: #009FB1;
	width: 100%;
	max-width: 120px;
	text-align: center;
	padding: 25px 20px;
	border-radius: 25px;
	line-height: 1px;
}
.ff-form-steps .gform_fields li:nth-child(3) .next-btn:hover{
	background: #FDB913;
}

.ff-form-steps .gform_fields li:nth-child(3) .next-btn:hover:before{
	color: #014153;
}

.ff-form-steps .back-btn {
	background-image: url(../images/arrow-left.svg);
}

.ff-form-steps .gfield {
	padding-right: 90px;
	position: relative;
}

.ff-form-steps .gform_footer {
	display: none;
	height: 0;
	opacity: 0;
	overflow: hidden;
}

.ff-form-steps i.form-submitting {
	position: absolute;
	margin-left: 10px;
}

.form-submitted .custom-footer {
	display: none;
}

.ff-form-steps.form-submitted .gform_confirmation_wrapper {
	font-size: 16px;
	font-weight: bold;
	text-align: right;
}

.ff-form-steps .validation-msg {
	font-size: 12px;
	font-weight: 700;
	color: #FA7D5A;
}

.ff-form-steps .gfield {
	padding: 0 50px 0 0!important;
}

.ff-form-steps .custom-footer {
	display: inline-block;
    float: right;
    position: relative;
    top: -39px;
    right: 157px;
    font-weight: bold;
}

.ff-form-steps .custom-footer .s2{
	display: none;
}

.ff-form-steps  .custom-submit-btn {
	margin-left: 20px;
}

.form-submitted .progress-indicator{
	display: none;
}

@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;
}