
.simform {
	position: relative;
	margin: 0 auto;
	padding: 0;
	width: 100%;
	text-align: left;
	font-size: 2.5em;
}

.simform .submit {
	display: none;
}

/* Question list style */
.simform ol {
	margin: 0;
	padding: 0;
	list-style: none;
	position: relative;
	-webkit-transition: height 0.4s;
	transition: height 0.4s;
}

.simform ol:before {
	content: '';
	background-color: #000000;
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 2.35em;
}

.questions li {
	z-index: 100;
	position: relative;
	visibility: hidden;
	height: 0;
	-webkit-transition: visibility 0s 0.4s, height 0s 0.4s;
	transition: visibility 0s 0.4s, height 0s 0.4s;
}

.questions li.current,
.no-js .questions li {
	visibility: visible;
	height: auto;
	-webkit-transition: none;
	transition: none;
}

/* Labels */
.questions li > span {
	display: block;
	overflow: hidden;
}

.questions li > span label {
	display: block;
	-webkit-transition: -webkit-transform 0.4s;
	transition: transform 0.4s;
	-webkit-transform: translateY(-100%);
	transform: translateY(-100%);
    color: #ffffff;
    font-size: 40px;
    font-weight: 400;
    font-family: 'Fjalla One', sans-serif;
    line-height: 40px;
	letter-spacing: 3px;
}

.questions li.current > span label,
.no-js .questions li > span label {
	-webkit-transition: none;
	transition: none;
	-webkit-transform: translateY(0);
	transform: translateY(0);
}

.show-next .questions li.current > span label {
	-webkit-animation: moveUpFromDown 0.4s both;
	animation: moveUpFromDown 0.4s both;
}

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

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

/* Input field */
.questions input {
	display: block;
	margin: 0;
	padding: 70px 0 6px 0;
	width: 100%;
	border: none;
	background: transparent;
	color: #ffffff;
	font-size: 16px;
	line-height: 1;
	opacity: 0;
   	-webkit-transition: all .3s ease-in-out;
    	-moz-transition: all .3s ease-in-out;
    	transition: all .3s ease-in-out;
	font-family: 'Open Sans', sans-serif;
	font-weight: 300;
	letter-spacing: 1.5px;
}

.questions textarea {
	display: block;
    	margin: 0;
    	padding: 56px 0 4px 0;
	width: 100%;
	height: auto;
	border: none;
	background: transparent;
	color: #ffffff;
	font-size: 16px;
	line-height: 20px;
	opacity: 0;
    	-webkit-transition: all .3s ease-in-out;
    	-moz-transition: all .3s ease-in-out;
    	transition: all .3s ease-in-out;
	font-family: 'Open Sans', sans-serif;
	font-weight: 300;
	letter-spacing: 1.5px;
}

.questions .current input,
.no-js .questions input,
.questions .current textarea,
.no-js .questions textarea{
	opacity: 1;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.questions input:focus, .questions textarea:focus, .simform button:focus {
	outline: none;
}

/* Next question button */
.next {
	position: absolute;
	right: 0;
	bottom: -78px; /* padding-bottom of form plus progress bar height */
	display: block;
	color: #555555;
	z-index: 100;
    height: 40px;
	width: 100px;
    border: 2px solid #555555;
    background-color: transparent;
    font-family: "Open Sans", sans-serif;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    padding: 0 12px;
    letter-spacing: 1.5px;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
	pointer-events: none;
}

.next:hover {
	border: 2px solid #7cc400 !important;
	    background-color: #7cc400;
	    cursor: pointer;
	    -webkit-transition: all .3s ease-in-out;
	    -moz-transition: all .3s ease-in-out;
	    transition: all .3s ease-in-out;
}

.next.show {
	opacity: 1;
	color: #ffffff;
	border: 2px solid #ffffff;
	pointer-events: all;
}

/* Progress bar */
.simform .progress {
	width: 0%;
	height: 2px;
	background: #ffffff;
	-webkit-transition: width 1s ease-in-out;
	transition: width 1s ease-in-out;
}

.simform .progress::before {
	position: absolute;
	top: auto;
	width: 100%;
	height: inherit;
	background: rgba(255,255,255,.2);
	content: '';
}

/* Number indicator */
.simform .number {
	position: absolute;
	right: 0;
	top: 0;
	overflow: hidden;
	margin: 0;
	width: 3em;
	font-weight: 400;
	font-size: 16px;
}

.simform .number:after {
	position: absolute;
	left: 50%;
	content: '/';
	opacity: 0.4;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
}

.simform .number span {
	float: right;
	width: 20%;
	text-align: center;
}

.simform .number .number-current {
	float: left;
}

.number-total {
	opacity: .4;
}

.simform .number-next {
	position: absolute;
	left: 0;
}

.simform.show-next .number-current {
	-webkit-transition: -webkit-transform 0.4s;
	transition: transform 0.4s;
	-webkit-transform: translateY(-100%);
	transform: translateY(-100%);
}

.simform.show-next .number-next {
	-webkit-animation: moveUpFromDown 0.4s both;
	animation: moveUpFromDown 0.4s both;
}

/* Error and final message */
.simform .error-message,
.simform .final-message {
	position: absolute;
	visibility: hidden;
	opacity: 0;
	-webkit-transition: opacity 0.4s;
	transition: opacity 0.4s;
}

.simform .error-message {
	padding: 6px 0 0 0;
	width: 100%;
	color: #70d03d;
	font-style: italic;
	font-size: 14px;
	letter-spacing: 1px;
	font-family: 'Open Sans', sans-serif;
	font-weight: 600;
}

.final-message {
	top: 0;
	left: 0;
	padding: 0;
	width: 100%;
	text-align: center;
	font-family: 'Fjalla One', sans-serif;
	font-size: 40px;
	font-weight: 400;
	letter-spacing: 3px;
	line-height: 40px;
	color: #ffffff;
}

.error-message.show,
.final-message.show {
	visibility: visible;
	opacity: 1;
}

.final-message.show {
	-webkit-transition-delay: 0.5s;
	transition-delay: 0.5s;
}

.etune-copyright {
	position: absolute;
	left: 0;
	bottom: -80px;
	font-family: 'Open Sans', sans-serif;
	font-size: 10px;
	font-weight: 300;
	color: #555555;
	letter-spacing: 1px;
}

.etune-copyright a {
	font-family: 'Open Sans', sans-serif;
	font-size: 10px;
	font-weight: 600;
	color: #555555;
	letter-spacing: 1px;
	text-decoration: none;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.etune-copyright a:hover {
	color: #70d03d;
	cursor: pointer;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.etune-copyright-thanks {
	position: relative;
	text-align: center;
	font-family: 'Open Sans', sans-serif;
	font-size: 10px;
	font-weight: 300;
	color: #555555;
	letter-spacing: 1px;
}

.etune-copyright-thanks a {
	font-family: 'Open Sans', sans-serif;
	font-size: 10px;
	font-weight: 600;
	color: #555555;
	letter-spacing: 1px;
	text-decoration: none;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.etune-copyright-thanks a:hover {
	color: #70d03d;
	cursor: pointer;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

/* Final hiding of form / showing message */
.simform-inner.hide {
	visibility: hidden;
	opacity: 0;
	-webkit-transition: opacity 0.3s, visibility 0s 0.3s;
	transition: opacity 0.3s, visibility 0s 0.3s;
}

/* No JS Fallback */
.no-js .simform {
	font-size: 1.75em;
}

.no-js .questions li {
	padding: 0 0 2em;
}

.no-js .simform .submit {
	display: block;
	float: right;
	padding: 10px 20px;
	border: none;
	background: rgba(0,0,0,0.3);
	color: rgba(0,0,0,0.4);
}

.no-js .simform .controls {
	display: none;
}

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

/* Adjust form for smaller screens */
@media screen and (max-width: 44.75em) {
	.simform {
		font-size: 1.8em;
	}
}

@media screen and (max-width: 33.5625em) {
	.simform {
		font-size: 1.2em;
	}
}