.contactform {
    position: relative;
    margin: 0 auto;
    padding-bottom: 70px;
    max-width: 45%;
    width: 100%;
    text-align: left;
    font-size: 25px;
    text-align: center;
    overflow: hidden;
}

.contactform .submit {
    display: none;
}

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

/*.contactform ol:before {*/
    /*content: '';*/
    /*background-color: rgba(0,0,0,0.1);*/
    /*position: absolute;*/
    /*left: 0;*/
    /*bottom: 0;*/
    /*width: 100%;*/
    /*height: 2.35em;*/
/*}*/

.questions li {
    z-index: 100;
    position: relative;
    visibility: hidden;
    height: 0;
    margin: 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%);
    line-height: 55px;
    font-size: 40px;
    margin: 0;
    font-weight: 400;
    color: #4d4d4d;
}

.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: 10px;
    width: 100%;
    border: 2px solid rgba(0, 0, 0, 0.1);
    color: #555;
    font-size: 20px;
    line-height: 1;
    opacity: 0;
    -webkit-transition: opacity 0.3s;
    transition: opacity 0.3s;
}

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

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

/* Next question button */
.contactform-inner .next {
    position: absolute;
    right: 0;
    bottom: 25px;
    display: block;
    padding: 8px;
    border: none;
    background: none;
    color: rgba(0,0,0,0.4);
    text-align: center;
    opacity: 0;
    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;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.contactform-inner .next:hover {
    color: rgba(0,0,0,0.5);
}

.contactform-inner .next::after {
    position: absolute;
    top: 0;
    left: 0;
    content: "\e628";
    font-family: 'themify';
    font-weight: 600;
    font-size: 12px;
}

.next.show {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
    pointer-events: auto;
    color: #4d4d4d;
}

/* Progress bar */
.contactform .progress {
    width: 0%;
    height: 0.1em;
    background: rgba(0, 0, 0, 0.16);
    -webkit-transition: width 0.4s ease-in-out;
    transition: width 0.4s ease-in-out;
    margin-bottom: 5px;
}

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

/* Number indicator */
.contactform .number {
    position: absolute;
    right: 0;
    overflow: hidden;
    margin: 0;
    width: 3em;
    font-weight: 700;
    font-size: 15px;
}

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

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

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

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

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

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

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

.contactform .error-message {
    padding: 0;
    width: 100%;
    font-style: italic;
    font-size: 0.4em;
    float: left;
    left: 0;
    text-align: left;
    font-size: 15px;
}

.final-message {
    top: 50%;
    left: 0;
    padding: 0.5em;
    width: 100%;
    text-align: center;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

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

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

/* Final hiding of form / showing message */
.contactform-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 .contactform {
    font-size: 1.75em;
}

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

.no-js .contactform .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 .contactform .controls {
    display: none;
}

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