
.simform {
	position: relative;
	margin: 0 auto;
	padding: 0 0 20px 0;
	max-width: 860px;
	width: 100%;
	text-align: left;
	font-size: 18px;
	font-size: 1.8rem;
	-webkit-transition: all 300ms ease;
	-moz-transition: all 300ms ease;
	-ms-transition: all 300ms ease;
	-o-transition: all 300ms ease;
	transition: all 300ms ease;
}
.simFormAct {
	padding: 30px 0 100px 0;
}
.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: rgba(0,0,0,0.1);
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 40px;
}

.simform .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;
}

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

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

.simform .questions li > span label {
	display: block;
	-webkit-transition: -webkit-transform 0.4s;
	transition: transform 0.4s;
	-webkit-transform: translateY(-100%);
	transform: translateY(-100%);
}

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

.simform .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 */
.simform .questions input {
	display: block;
	margin: 0;
	padding: 11px 9px 9px 9px;
	width: calc(100% - 40px);
	border: none;
	height: 40px;
	background: transparent;
	color: #5c5d5e;
	opacity: 0;
	-webkit-transition: opacity 0.3s;
	transition: opacity 0.3s;
}

.simform .questions .current input,
.simform .no-js .questions input {
	opacity: 1;
}

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

/* Next question button */
.simform .next {
	position: absolute;
	right: 0;
	margin-top: -40px;
	line-height: 40px;
	display: block;
	padding: 0;
	width: 40px;
	height: 40px;
	border: none;
	background: none;
	text-align: center;
	z-index: 100;
	cursor: pointer;
	-webkit-transition: -webkit-transform 0.3s, opacity 0.3s;
	transition: transform 0.3s, opacity 0.3s;
	-webkit-transform: translateX(-20%);
	transform: translateX(-20%);
	pointer-events: none;
	color: #e2001a;
}
.simform .next .glyphicon {
	line-height: 40px;
}



.simform .next.show {
	opacity: 1;
	-webkit-transform: translateX(0);
	transform: translateX(0);
	pointer-events: auto;
	background-color: #e2001a;
	color: #ffffff;
}

/* Progress bar */
.simform .progress {
	width: 0%;
	height: 5px;
	background: #e2001a;
	-webkit-transition: width 0.4s ease-in-out;
	transition: width 0.4s ease-in-out;
	margin-bottom: 2px;
}

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

/* Number indicator */
.simform .number {
	position: absolute;
	right: 0;
	overflow: hidden;
	width: 40px;
}

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

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

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

.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: 0;
	width: 100%;
	color: #ffffff;
	font-size: 14px;
	font-size: 1.4rem;
}

.simform .final-message {
	top: 15px;
	left: 0;
	padding: 0.5em;
	width: 100%;
	text-align: center;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	font-size: 16px;
	font-size: 1.6rem;
	line-height: 130%;
}

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

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

/* Final hiding of form / showing message */
.simform .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 */


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

.simform .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);
}

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

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