/* Main form wrapper */
.fs-form-wrap {
	position: relative;
	width: 100%;
	height: 100%;
	color: #e5064b ;
	z-index: 1;
}

.overview .fs-form-wrap {
	height: auto;
}

/* Title */
.fs-title {
	position: absolute;
	top: 0;
	left: 0;
	margin: 0;
	padding: 40px;
	width: 100%;
}

.fs-title h1 {
	margin: 0;
}

/* Form */
.fs-form {
	position: relative;
	text-align: left;
	font-size: 1.7em;
}

.no-js .fs-form {
	padding: 0 0 6em 0;
}

/* Views (fullscreen and overview)*/
.fs-form-full {
	top: 32%;
	margin: 0 auto;
	width: 70%;
}

.fs-form-full,
.fs-message-error {
	max-width: 960px;
}

.fs-form-overview {
	padding: 2.5em 25% 6em;
	width: 100%;
	/*height: 100%;*/
	/*background: #e5064b;*/
	color: #e5064b;
	font-size: 1.2em;
}

.fs-form-overview .fs-fields::before {
	display: block;
	margin-bottom: 2.5em;
	color: #3b3f45;
	font-weight: 700;
	font-size: 1.85em;
}

.fs-form-overview .fs-fields .title_overview {
	font-size: 30px;
    margin-bottom: 40px;
    text-transform: none;
}

/* Switch view animation (we hide the current view, switch the view class and show it again) */
.fs-form.fs-show {
	-webkit-animation: animFadeIn 0.5s;
	animation: animFadeIn 0.5s;
}

@-webkit-keyframes animFadeIn {
	0% { opacity: 0; }
	100% { opacity: 1; }
}

@keyframes animFadeIn {
	0% { opacity: 0; }
	100% { opacity: 1; }
}

.fs-form.fs-show .fs-fields {
	-webkit-animation: animMove 0.5s;
	animation: animMove 0.5s;
}

@-webkit-keyframes animMove {
	from { top: 100px; }
}

@keyframes animMove {
	from { top: 100px; }
} /* we need to use top here because otherwise all our fixed elements will become absolute */

/* Visibility control of elements */
.fs-form-full .fs-fields > li,
.fs-nav-dots, 
.fs-progress,
.fs-numbers,
button.fs-continue,
.fs-message-error,
.fs-message-final {
	visibility: hidden;
}

.fs-form-full .fs-fields > li{
	height: 0;
}


.no-js .fs-form-full .fs-fields > li {
	visibility: visible;
}

.fs-show {
	visibility: visible !important;
}

/* Some general styles */
.fs-form-wrap button {
	border: none;
	background: none;
}

.fs-form-wrap button[disabled] {
	opacity: 0.3;
	pointer-events: none;
}

.fs-form-wrap input:focus,
.fs-form-wrap button:focus {
	outline: none  !important;
}

/* Hide the submit button */
.fs-form .fs-submit {
	display: none;
}

/* Fields */
.fs-fields {
	position: relative;
	margin: 0 auto;
	padding: 0;
	top: 0;
	list-style: none;
	min-height: 500px;
	font-weight: 700;

}
.fs-fields label {
	font-weight: 700;
}

.fs-form-overview ol {
	max-width: ;
}

.fs-fields > li {
	position: absolute;
	/*z-index: 1;*/
	margin: 70px 0;
	padding: 0;
	border: none;

}

.fs-fields > li:hover {
	/*z-index: 999;*/
}

.js .fs-form-full .fs-fields > li {
	position: absolute;
	width: 100%;
}

.fs-form-overview .fs-fields > li,
.no-js .fs-form .fs-fields > li {
	/*margin: 1em 0 2em;*/
	padding: 0 0 2em 0;
	/*border-bottom: 2px solid rgba(0,0,0,0.1);*/
	 position: relative;
}

/* Labels & info */
.fs-fields > li label {
	position: relative;
}

.fs-fields > li label.fs-field-label {
	/*display: inline-block;*/
	padding: 0 5px 1em 0;
	font-weight: 700; 
	pointer-events: none;
}

.fs-form-full .fs-fields > li label[data-info]::after {
	position: relative;
	display: inline-block;
	margin-left: 10px;
	width: 24px;
	height: 24px;
	border: 2px solid rgba(0,0,0,0.4);
	color: rgba(0,0,0,0.4);
	border-radius: 50%;
	content: 'i';
	vertical-align: top;
	text-align: center;
	font-weight: 700;
	font-style: italic;
	font-size: 14px;
	font-family: Georgia, serif;
	line-height: 20px;
	cursor: pointer;
	pointer-events: auto;
}

.fs-form-full .fs-fields > li label[data-info]::before {
    position: absolute;
    bottom: 100%;
   	left: 0;
    padding: 0 0 10px;
    min-width: 200px;
	content: attr(data-info);
	font-size: 0.4em;
	color: #6a7b7e;
    opacity: 0;
    -webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
    transition: opacity 0.3s, transform 0.3s;
    -webkit-transform: translate3d(0,-5px,0);
    transform: translate3d(0,-5px,0);
    pointer-events: none;
}

.fs-form-full .fs-fields > li label[data-info]:hover::before {
    opacity: 1;
    -webkit-transform: translate3d(0,0,0);
    transform: translate3d(0,0,0);
}

.fs-form-full .fs-fields > li label:hover ~ .fs-info,
.fs-form-full .fs-fields > li .fs-info:hover {
	opacity: 1;
	-webkit-transform: translateY(0);
	transform: translateY(0);
	pointer-events: auto;
}

/* Inputs */
.fs-fields input {
	display: block;
	margin: 0;
	padding: 0 0 0.15em;
	width: 100%;
	border: none;
	border-bottom: 2px solid #e5064b;
	background-color: transparent;
	color: #e5064b;
	text-overflow: ellipsis;
	font-weight: normal;
	/*font-size: 1.5em;*/
	border-radius: 0;
	clear: both;
}

.fs-fields input:invalid {
	box-shadow: none; /* removes red shadow in FF*/
}
/*
.fs-form-overview .fs-fields input {
	border-bottom-color: transparent;
	color: rgba(0,0,0,0.5);
}
*/
.fs-fields [required] {
	background-image: url(../img/abacusstar.svg);
	background-position: top right;
	background-size: 18px;
	background-repeat: no-repeat;
}

.fs-fields input:focus {
	 /*background-color: #3b3f45; Fixes chrome bug with placeholder */
}

.fs-form-overview .fs-fields input:focus {
	 /*background-color: #e5064b; /* Fixes chrome bug with placeholder */
}

.fs-form-overview .fs-fields input {
	font-size: 1.2em;
}

.fs-fields .fs-radio-custom input[type="radio"] {
	position: absolute;
	display: block;
	margin: 30px auto 20px;
	margin: 0 auto 20px;
	width: 100%;
	height: 100%;
	opacity: 0;
	cursor: pointer;
}

.fs-fields > li .fs-radio-custom span {
	float: left;
	position: relative;
	margin-right: 3%;
	padding: 10px;
	max-width: 200px;
	width: 30%;
	text-align: center;
	font-weight: 700;
	font-size: 50%;
	font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

.fs-fields > li .fs-radio-custom span label {
	color: rgba(0,0,0,0.4);
	-webkit-transition: color 0.3s;
	transition: color 0.3s;
}

.fs-form-overview .fs-fields > li .fs-radio-custom span {
	max-width: 140px;
}

.fs-form-overview .fs-fields > li .fs-radio-custom span {
	font-size: 75%;
}

.fs-fields > li .fs-radio-custom label {
	display: block;
	padding-top: 100%;
	width: 100%;
	height: 100%;
	cursor: pointer;
}

.fs-fields .fs-radio-custom label::after {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 100%;
	height: 100%;
	background-position: 50% 0%;
	background-size: 85%;
	background-repeat: no-repeat;
	content: '';
	opacity: 0.5;
	-webkit-transition: opacity 0.2s;
	transition: opacity 0.2s;
	-webkit-transform: translate(-50%,-50%);
	transform: translate(-50%,-50%);
}

.fs-fields .fs-radio-custom label.radio-mobile::after {
	background-image: url(../img/mobile.svg);
}

.fs-fields .fs-radio-custom label.radio-social::after {
	background-image: url(../img/social.svg);
}

.fs-fields .fs-radio-custom label.radio-conversion::after {
	background-image: url(../img/conversion.svg);
}

.fs-fields .fs-radio-custom label:hover::after,
.fs-fields input[type="radio"]:focus + label::after,
.fs-fields input[type="radio"]:checked + label::after {
	opacity: 1;
}

.fs-fields .fs-radio-custom input[type="radio"]:checked + label {
	color: #e5064b;
}

.fs-form-overview .fs-fields .fs-radio-custom input[type="radio"]:checked + label {
	color: rgba(0,0,0,0.8);
}

.fs-fields input[type="checkbox"] {
  width: auto;
  height: 38px;
  margin-left: 0 !important;
}
.fs-form-overview .powermail_fieldwrap_type_check .fs-field-label {
  margin-bottom: 0;
  padding-bottom: 0;
}
.fs-form-overview .fs-fields input[type="checkbox"] {
  height: 26px;
}

.fs-fields textarea {
	padding: 0.25em;
	width: 100%;
	height: 200px;
	border: 2px solid #e5064b ;
	background-color: transparent;
	color: #e5064b;
	font-weight: normal;
	font-size: 0.85em;
	resize: none;
}
/*
.fs-form-overview .fs-fields textarea {
	height: 100px;
	color: rgba(0,0,0,0.5);
}
*/
.fs-fields textarea:focus {
	outline: none;
}
/*
.fs-form-overview .fs-fields textarea {
	padding: 0;
	border-color: transparent;
}*/
/*
.fs-form-overview .fs-fields textarea:focus {
	background: #e5064b;
}*/

.fs-form div.cs-select.cs-skin-boxes {
	display: block;
}

.fs-form-overview .cs-skin-boxes > span {
	border-radius: 5px;
	width: 90px;
	height: 70px;
	font-size: 0.8em;
}

.fs-form-overview .cs-skin-boxes > span::before {
	padding-top: 50px;
	box-shadow: 0 20px 0 #292c30, inset 0 -5px #292c30;
}

.fs-fields input.fs-mark {
	padding-left: 1em;
	background-image: url(../img/dollar.svg);
	background-position: 0% 0.15em;
	background-size: auto 75%;
	background-repeat: no-repeat;
}

.fs-fields input.fs-mark[required] {
	background-image: url(../img/dollar.svg), url(../img/abacusstar.svg);
	background-position: 0% 0.15em, top right;
	background-size: auto 75%, 18px;
	background-repeat: no-repeat;
}

/* placeholder */
.fs-fields input::-webkit-input-placeholder,
.fs-fields textarea::-webkit-input-placeholder {
	color: #f49cb8;
}

.fs-fields input:-moz-placeholder,
.fs-fields textarea:-moz-placeholder {
	color: #f49cb8;
}

.fs-fields input::-moz-placeholder,
.fs-fields textarea::-moz-placeholder {
	color: #f49cb8;
}

.fs-fields input:-ms-input-placeholder,
.fs-fields textarea:-ms-input-placeholder {
	color: #f49cb8;
}
.fs-fields input[type="email"]::-webkit-input-placeholder {
    color: #f49cb8 !important;
}

/* Hide placeholder when focused in Webkit browsers */
.fs-fields input:focus::-webkit-input-placeholder {
	color: transparent;
}

/* Dot navigation */
.fs-nav-dots {
	position: absolute;
	top: 50%;
	right: 60px;
	left: auto;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
}

.fs-nav-dots button {
	position: relative;
	display: block;
	padding: 0;
	margin: 16px 0;
	width: 16px;
	height: 16px;
	border-radius: 50%;
	background: transparent;
	-webkit-transition: -webkit-transform 0.3s ease, opacity 0.3s ease;
	transition: transform 0.3s ease, opacity 0.3s ease;
}

.fs-nav-dots button::before,
.fs-nav-dots button::after {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border-radius: 50%;
	background-color: rgba(0,0,0,0.5);
	content: '';
	text-indent: 0;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

.fs-nav-dots button::after {
	background-color: rgba(0,0,0,0.4);
	-webkit-transform: perspective(1000px) rotate3d(0,1,0,180deg);
	transform: perspective(1000px) rotate3d(0,1,0,180deg);
}

.fs-nav-dots button.fs-dot-current {
	-webkit-transform: perspective(1000px) rotate3d(0,1,0,180deg);
	transform: perspective(1000px) rotate3d(0,1,0,180deg);
}

.fs-nav-dots button:hover::before,
.fs-nav-dots button.fs-dot-current::before {
	background: #e5064b;
}

/* Progress bar */
.fs-progress {
	position: absolute;
	top: 0;
	width: 0%;
	height: 0.5em;
	background: #e5064b;
	-webkit-transition: width 0.3s ease-in-out;
	transition: width 0.3s ease-in-out;
}

/* Number indicator */
.fs-numbers {
	position: absolute;
	top: 0;
	right: 0;
	overflow: hidden;
	color: rgba(0,0,0,0.4);
	margin: 40px;
	width: 2em;
	font-weight: 700;
	font-size: 2em;
	font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
	cursor: default;
}

.fs-numbers:after {
	position: absolute;
	width: 100%;
	text-align: center;
	content: '/';
	font-weight: 300;
	opacity: 0.4;
	left: 0;
}

.fs-numbers span {
	float: right;
	width: 40%;
	text-align: center;
}

.fs-numbers .fs-number-current {
	float: left;
}

.fs-numbers .fs-number-new {
	position: absolute;
	left: 0;
	-webkit-transform: translateY(100%);
	transform: translateY(100%);
}

/* Animations for numbers */
/* Show next number */
.fs-numbers.fs-show-next .fs-number-new {
	-webkit-animation: animMoveUpFromDown 0.4s both;
	animation: animMoveUpFromDown 0.4s both;
}

@-webkit-keyframes animMoveUpFromDown {
	from { -webkit-transform: translateY(100%); }
	to { -webkit-transform: translateY(0); }
}

@keyframes animMoveUpFromDown {
	from { -webkit-transform: translateY(100%); transform: translateY(100%); }
	to { -webkit-transform: translateY(0); transform: translateY(0); }
}

.fs-numbers.fs-show-next .fs-number-current {
	-webkit-animation: animMoveUp 0.4s both;
	animation: animMoveUp 0.4s both;
}

@-webkit-keyframes animMoveUp {
	to { -webkit-transform: translateY(-100%); }
}

@keyframes animMoveUp {
	to { -webkit-transform: translateY(-100%); transform: translateY(-100%); }
}

/* Show previous number */
.fs-numbers.fs-show-prev .fs-number-new {
	-webkit-animation: animMoveDownFromUp 0.4s both;
	animation: animMoveDownFromUp 0.4s both;
}

@-webkit-keyframes animMoveDownFromUp {
	from { -webkit-transform: translateY(-100%); }
	to { -webkit-transform: translateY(0); }
}

@keyframes animMoveDownFromUp {
	from { -webkit-transform: translateY(-100%); transform: translateY(-100%); }
	to { -webkit-transform: translateY(0); transform: translateY(0); }
}

.fs-numbers.fs-show-prev .fs-number-current {
	-webkit-animation: animMoveDown 0.4s both;
	animation: animMoveDown 0.4s both;
}

@-webkit-keyframes animMoveDown {
	to { -webkit-transform: translateY(100%); }
}

@keyframes animMoveDown {
	to { -webkit-transform: translateY(100%); transform: translateY(100%); }
}

/* Continue button and submit button */
button.fs-submit,
.fileUpload,
button.fs-continue ,
button.fs-last{  
	padding: 0.6em 1.5em;
	/*border: 2px solid #e5064b;*/
	/*border-radius: 40px;*/
	font-weight: 700;
	color: #fff;
	background-color: #e5064b;
    transition: all 0.3s ease 0s;

}

.fs-form-overview .fs-submit,
.no-js .fs-form .fs-submit  {
	display: block;
	float: right;
}

.fs-form-overview .fs-submit {
	/*border-color: #232529;
	color: #232529;*/
}

button.fs-continue {
	position: absolute;
	right: 0;
	bottom: 0;
	margin: 0 40px 60px 0;
	/*font-size: 1.25em;*/
	text-transform: uppercase;
	z-index: 2;
}

button.fs-last {
	position: absolute;
	left: 0;
	bottom: 0;
	margin: 0 0 60px 40px;
	/*font-size: 1.25em;*/
	text-transform: uppercase;
	z-index: 2;
}
/*
button.fs-submit:hover,
button.fs-submit:focus,
.fileUpload:hover ,
button.fs-continue:hover,
button.fs-last:hover {
	border-radius: 20px;
    text-decoration: none;
    background: #e5064b;
}
*/
.fs-continue::after ,
.fs-last::after {
	position: absolute;
	top: 100%;
	left: 0;
	width: 100%;
	line-height: 3;
	text-align: center;
	background: transparent;
	color: rgba(0,0,0,0.3);
	/*content: 'or press ENTER';*/
	font-size: 0.65em;
	pointer-events: none;
}

/* Error message */
.fs-message-error {
	position: absolute;
	bottom: 73%;
	left: 50%;
	/*z-index: 800;*/
	max-width: 960px;
	width: 70%;
	color: #e5064b;
	font-weight: 700;
	font-size: 1em;
	opacity: 0;
	-webkit-transform: translate3d(-50%,-5px,0);
	transform: translate3d(-50%,-5px,0);
}

.fs-message-error.fs-show {
	opacity: 1;
	-webkit-transition: -webkit-transform 0.3s, opacity 0.3s;
	transition: transform 0.3s, opacity 0.3s;
	-webkit-transform: translate3d(-50%,0,0);
	transform: translate3d(-50%,0,0);
}

/* Animation classes & animations */
.fs-form li.fs-current {
	visibility: visible;
	height: 100%;
	width: 100%;
	margin: 70px 0;
    min-height: 500px;
    position: absolute;
}
.fs-form li{
	width: 101%;
}

.fs-form li.fs-hide,
.fs-form li.fs-show {
	pointer-events: none;
}

/* Hide current li when navigating to next question */
.fs-form .fs-display-next .fs-hide {
	visibility: visible;
}

.fs-form .fs-display-next .fs-hide .fs-anim-lower,
.fs-form .fs-display-next .fs-hide .fs-anim-upper {
	-webkit-animation: animHideNext 0.5s cubic-bezier(0.7,0,0.3,1) forwards;
	animation: animHideNext 0.5s cubic-bezier(0.7,0,0.3,1) forwards;
}

.fs-form .fs-display-next .fs-hide .fs-anim-lower {
	-webkit-animation-delay: 0.1s;
	animation-delay: 0.1s;
}

@-webkit-keyframes animHideNext {
	to { opacity: 0; -webkit-transform: translate3d(0,-500px,0); }
}

@keyframes animHideNext {
	to { opacity: 0; -webkit-transform: translate3d(0,-500px,0); transform: translate3d(0,-500px,0); }
}

/* Show new li when navigating to next question */
.fs-form .fs-display-next .fs-show .fs-anim-lower,
.fs-form .fs-display-next .fs-show .fs-anim-upper {
	-webkit-animation: animShowNext 0.5s cubic-bezier(0.7,0,0.3,1) both 0.15s;
	animation: animShowNext 0.5s cubic-bezier(0.7,0,0.3,1) both 0.15s;
}

.fs-form .fs-display-next .fs-show .fs-anim-lower {
	-webkit-animation-delay: 0.25s;
	animation-delay: 0.25s;
}

@-webkit-keyframes animShowNext {
	from { opacity: 0; -webkit-transform: translate3d(0,500px,0); }
}

@keyframes animShowNext {
	from { opacity: 0; -webkit-transform: translate3d(0,500px,0); transform: translate3d(0,500px,0); }
}

/* Hide current li when navigating to previous question */
.fs-form .fs-display-prev .fs-hide {
	visibility: visible;
}

.fs-form .fs-display-prev .fs-hide .fs-anim-lower,
.fs-form .fs-display-prev .fs-hide .fs-anim-upper {
	-webkit-animation: animHidePrev 0.5s cubic-bezier(0.7,0,0.3,1) forwards;
	animation: animHidePrev 0.5s cubic-bezier(0.7,0,0.3,1) forwards;
}

.fs-form .fs-display-prev .fs-hide .fs-anim-upper {
	-webkit-animation-delay: 0.1s;
	animation-delay: 0.1s;
}

@-webkit-keyframes animHidePrev {
	to { opacity: 0; -webkit-transform: translate3d(0,500px,0); }
}

@keyframes animHidePrev {
	to { opacity: 0; -webkit-transform: translate3d(0,500px,0); transform: translate3d(0,500px,0); }
}

/* Show new li when navigating to previous question */
.fs-form .fs-display-prev .fs-show .fs-anim-lower,
.fs-form .fs-display-prev .fs-show .fs-anim-upper {
	-webkit-animation: animShowPrev 0.5s cubic-bezier(0.7,0,0.3,1) both 0.15s;
	animation: animShowPrev 0.5s cubic-bezier(0.7,0,0.3,1) both 0.15s;
}

.fs-form .fs-display-prev .fs-show .fs-anim-upper {
	-webkit-animation-delay: 0.25s;
	animation-delay: 0.25s;
}

@-webkit-keyframes animShowPrev {
	from { opacity: 0; -webkit-transform: translate3d(0,-500px,0); }
}

@keyframes animShowPrev {
	from { opacity: 0; -webkit-transform: translate3d(0,-500px,0); transform: translate3d(0,-500px,0); }
}

/* Remove IE clear cross */
input[type=text]::-ms-clear {
    display: none;
}

/*
.fs-form-overview .fs-fields .title_overview{
	    left: -75px;
	    width: 140%;
	    position: relative;
}

/* Adjust form for smaller screens */
@media screen and (max-width: 52.5em) {   
  .fs-fields label, .fs-fields .powermail_input, .fs-fields .powermail_textarea,
  .fs-form, .fs-fields input {
    font-size: 16px !important;
  }  
      
  .fs-fields input[type="checkbox"] {
    height: 17px;
    margin-right: 5px;
  }
  
  .fs-fields > li label.fs-field-label {
      padding: 0 5px 0.4em 0;
  }
  
  .fs-fields {    
    min-height: 250px;
  }

	/*.fs-form-overview .fs-fields .title_overview{
	    left: 0px;
	    width: 100%;
	    position: relative;
	}*/
	.fs-form-overview .nl-field-toggle::after{
		 top: 6px !important;
	}

	.fs-form-overview  .input_wrapper , .fs-form-overview  .input_wrapper > label, .fs-form-overview .input_wrapper > div{
		display: block !important;
		width : 100% !important;
	}

	.fs-form-full{
		width: 100% !important;
	}
	.fs-nav-dots{
		display: none !important;
	}

	#selector_form_div .nl-field ul{
    right: 0;
    margin-right: -25px;
    font-size: 100%;  
	}

	.fs-form ,.fs-fields input{
		    font-size: 1.4em !important;
	}
	 .nl-field-toggle::after{
	 	 font-size: 1.1em !important;
	 }

	.nl-field-toggle::after{
		/*position: relative !important;
		top: 0 !important;*/
		/*padding-left: 23px;*/
		margin: 0;
	}
	.nl-dd ul li{
		white-space : pre-wrap !important;
	}
	.nl-field ul{
		min-width:160px;
    font-size: 100% !important;

	}
	.nl-field ul li {
		width: 100%;
		border-bottom: 1px solid #fff;
	}
	

	.fs-fields textarea{
		height:100px;
	}
	.fs-form-overview  .input_wrapper > label, .fs-form-overview .input_wrapper > div{
		padding: 0;
	}
  .fs-form li.fs-current, .fs-fields > li {
    margin: 0;
    padding: 0;
    min-height: 250px;
  }

	body {
		min-height: 500px;
	}

	.fs-form-wrap {
		font-size: 70%;
	}

	.fs-form {
		/*top: 6em;*/
		right: 2em;
		left: 0;
		padding: 0;
		/*width: auto;*/
		font-size: 2em;      
	}
	.fs-controls{
		z-index: 2;
	}

	.fs-form.fs-form-overview {
		top: 0;
		right: 0;
		padding: 1.5em 1em 8em 1em;
		font-size: 1.5em;
	}

	.fs-title {
		padding: 20px;
	}

	.fs-numbers {
    margin: 0;
    top: -30px;
    font-size: 1.6em;
	}

	.fs-nav-dots {
		right: 25px;
	}

	button.fs-continue {
		bottom: 20px;
		margin: 0;
    right: 0;
    padding:25px;
		width: 110px;
		height: 50px;
		/*border-radius: 50%;*/
		font-size: 2em;
		color: transparent !important; 
	}


	button.fs-continue::focus , button.fs-last::focus {
		outline:none !important;
		outline-style:none !important;
		box-shadow:none !important;
		border-color:transparent !important;
	}

	button.fs-last {
		right: 20px;
		bottom: 20px;
		margin: 0;
		padding: 50px 0 0 50px;
		width: 110px;
		height: 50px;
		border-radius: 50%;
		font-size: 2em;
		color: transparent !important;
	}

	button.fs-continue::before {
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		content: '\f178';
		font-family: FontAwesome;
		text-align: center;
		font-size: 1em;
		line-height: 50px;
		transform: scaleY(1);
		color: #fff !important;
	}

	button.fs-last::before {
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		content: '\f177';
		font-family: FontAwesome;
		text-align: center;
		font-size: 1em;
		line-height: 50px;
		transform: scaleY(1);
		color: #fff !important;	
	}

	input:focus, textarea:focus, select:focus ,button:focus{
	
	}

	.fs-continue::after {
		content: '';
	}

	button.fs-submit {
		width: 100%;
		font-size: 1.25em;
	}

	.fs-message-error {
		bottom: -2.5em;
		left: 0;
		padding: 15px 0;
		width: 100%;
		font-size: 1.5em;
		text-align: center;
		-webkit-transform: translate3d(0,-5px,0);
		transform: translate3d(0,-5px,0);
	}

	.fs-message-error.fs-show {
		-webkit-transform: translate3d(0,0,0);
		transform: translate3d(0,0,0);
	}
  
  .powermail_fieldwrap_type_file {
    position: relative;
  }
  .clear_list {
    bottom: -45px !important;
    top: auto !important;
  }
  .fs-form-overview  .input_wrapper {
    margin: 12px 0;
  }
  .fs-form-overview .fileUpload {
    margin-top:0;
  }
  .fs-form-overview .clear_list {
    right: -32px;
    font-size: 25px !important;
  }
}

.fileUpload {
    padding: 15px !important;
}

.fileUpload span.fa {
	 margin-right: 10px;
}
.fileUpload input.upload {
    position: absolute;
    top: 0;
    right: 0;
    margin: 0;
    padding: 0;
    font-size: 20px;
    cursor: pointer;
    opacity: 0;
    filter: alpha(opacity=0);
    height: 100%;
}

.fs-form-overview  .input_wrapper {
	display: table;
	width: 100%;
	margin: 30px 0;
	/*-webkit-transform: translate3d(0, 0, 0);*/
	
}
.fs-form-overview  .input_wrapper > label, .fs-form-overview .input_wrapper > div {
    display: table-cell ;
    vertical-align: middle;
    width: 56%;
    padding: 0 !important;
}

.fs-form-overview .nl-field {
	width: 100%;
	background-color: #e5064b;
	
}

.fs-form-overview .nl-field-toggle, .fs-form-overview .nl-form input,.fs-form-overview  .nl-form select{
	border-bottom: none;
	height: 100%;
	width: 100%;
	padding: 10px;
	color: #fff !important;
}
.fs-form-overview .nl-field-toggle:hover {
	color: #fff !important;
	text-decoration: none;
}

.fs-form-overview .nl-field-toggle::after{ 
   content: '\f0dd';
   font-family: FontAwesome;
   font-weight: normal;
   font-style: normal;
   text-decoration:none;
   position: absolute;
   right: 10px;
   top: 2px;
   font-size: 26px;


}    
.fs-form-overview .edit {
  display: table !important;
}   
.fs-form-overview  .input_wrapper.edit::after{
   content: '\f040';
   font-family: FontAwesome;
   font-weight: normal;
   font-style: normal;
   text-decoration:none;
   font-size: 15px;
   top: -33px;
   left: 102%;
   position: relative;

} 

 .fs-form-overview .powermail_fieldwrap_type_html{
 	display: none;
 }
 .fs-form.fs-form-overview li.fs-current, .fs-form-overview .fs-fields > li {
    min-height: 0;
  } 
 .fs-form-overview .fs-fields > li {
 	margin: 0;
 	padding: 2px;
 }

.fs-form-overview .fs-fields textarea ,
.fs-form-overview .fs-fields input,
.fs-form-overview .nl-field-toggle,
.fs-form-overview .nl-form input,
.fs-form-overview .nl-form select,
.fs-form-overview .fileUpload {
	font-weight: normal !important;
}


.fs-form-overview .input_wrapper > label::after{ 
		/*content: ':';*/
		display: inline-block;
   }

.fs-form-overview .nl-field-toggle{
	color: fff !important;
}

.fs-form-overview .fs-submit{
	text-transform: uppercase;
}


.nl-field-toggle{
	 padding-right: 25px !important;
}
.nl-field-toggle::after{ 
   content: '\f078';
   font-family: FontAwesome;
   font-weight: normal;
   font-style: normal;
   text-decoration:none;
   position: absolute;
   top: 3px;
   font-size: 26px; 
   margin-left: 8px;
} 


.nl-field-toggle:hover, .nl-field-toggle:focus {
	text-decoration: none; 
}


#form-selector-div .fs-numbers  , #form-selector-div .fs-nav-dots , .fs-progress ,  .fs-last{
	display: none !important; 
}

.showImportant {
	display: inline-block !important; 
}

input:-webkit-autofill {
    background-color: fff !important;
}


.confirm_title {
    color: #e5064b;
    padding: 100px 0;
    font-size: 32px;
}

.confirm_title .fa.fa-smile-o{
	font-size: 60px;
  padding-top: 20px;
}
  
.file_list {
   /* max-width: 275px;*/
    overflow: hidden;
}
.clear_list {
 	  top: 22%;
    display: inline-block;
    font-size: 42px !important;
    position: absolute;
    right: 0;
    cursor: pointer;
}

.fs-form-overview .clear_list{
	bottom:0;
	font-size: 36px !important;
  top:auto;
}
