/*
 ____                 _     
| __ ) _ __ _____   _(_)___ 
|  _ \| '__/ _ \ \ / / / __|
| |_) | | |  __/\ V /| \__ \
|____/|_|  \___| \_/ |_|___/
                
CSS File - These are the styles for the form for registration of a URL.
*/

/* Main form wrapper */
.uf-form-wrap {
	position: absolute;
    width: 100%;
    height: 680px;
    margin-top: 100px;
	color: #fff;
}

@media (min-width: 640px)and (max-width: 1115px) {
    .uf-form-wrap {
        height: 580px;
    }
}
@media (max-width: 640px) {
    .uf-form-wrap {
        height: 420px;
    }
}

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

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

.uf-title h1 {
	margin: 0;
}

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

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

/* Controls */
.uf-controls {
    width: 420px;
    position: absolute;
    right: 40px;
    bottom: 0;
}
@media (min-width: 640px)and (max-width: 750px) {
    .uf-controls {
        width: 345px;
        right: 8%;
    }
}
@media (max-width: 640px) {
    .uf-controls {
        width: 83%;
        right: 8%;
    }
}

/* Views (fullscreen and overview)*/
.uf-form-full {
	top: 20%;
	margin: 0 auto;
	width: 83%;
}
@media (min-width: 640px)and (max-width: 1115px) {
    .uf-form-full {
        top: 13%;
    }
}
@media (max-width: 640px) {
    .uf-form-full {
        top: 17%;
        width: 85%
    }
}
.uf-form-full,
.uf-message-error {
	max-width: 960px;
}

.uf-form-overview {
	padding: 40px 8%;
    margin-top: -101px;
	width: 100%;
	height: 1460px;
	background: rgba(59, 63, 69, 1);
	color: #3b3f45;
	font-size: 1.2em;
    z-index: 999999;
}

.uf-form-overview .uf-fields::before {
	display: block;
	margin-bottom: 2.5em;
	color: #fff;
	font-family: 'Oswald', sans-serif;
	content: 'Review & Submit';
    letter-spacing: 3px;
    text-transform: uppercase;
	font-weight: 700;
	font-size: 1.85em;
}

.uf-form-overview h2 {
    font-size: 1.2em!important;
}
@media (max-width: 640px) {
    .uf-form-overview h2 {
        margin-top: 40px;
    }
}
.uf-form-overview label {
    font-family: 'Roboto', sans-serif !important;
    text-transform: none !important;
    letter-spacing: 0 !important;
    font-size: 1.3em !important;
    color: #ddd !important;
    padding: 12px!important;
    height: 0!important;
}
@media (min-width: 640px)and (max-width: 750px) {
    .uf-form-overview label {
        font-size: 1.2em !important;
    }
}
.uf-form-overview .line {
    display: none;
}

/* Switch view animation (we hide the current view, switch the view class and show it again) */
.uf-form.uf-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; }
}

.uf-form.uf-show .uf-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 */
.uf-form-full .uf-fields > li,
.uf-nav-dots, 
.uf-progress,
.uf-numbers,
button.uf-continue,
button.uf-quick,
.uf-message-error,
.uf-message-final {
	visibility: hidden;
}

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

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

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

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

.uf-form-wrap input:focus,
.uf-form-wrap button:focus {
	outline: none;
}

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

/* Fields */
.uf-fields {
	position: relative;
	margin: 5px auto;
	padding: 0;
	top: 0;
	list-style: none;
}

.uf-fields > li {
	position: relative;
	z-index: 1;
	margin: 0;
	padding: 0;
	border: none;
}

.uf-fields > li:hover {
	z-index: 998;
}

.js .uf-form-full .uf-fields > li {
	position: absolute;
	width: 100%;
    max-height: 110px;
}

.uf-form-overview .uf-fields > li,
.no-js .uf-form .uf-fields > li {
	margin: 1em 0 2em;
    height: 90px;
	padding: 0 0 2em 0;
	border-bottom: 2px solid rgba(0,0,0,0.1);
}
@media (max-width: 640px) {
    .uf-form-overview .uf-fields > li,
    .no-js .uf-form .uf-fields > li {
        margin: 1em 0 2em;
        height: auto;
        padding: 0 0 4.5em 0;
        border-bottom: 2px solid rgba(0,0,0,0.1);
    }
}

/* Labels & info */
.uf-form h2 {
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    color: #00A8E8;
    font-size: 0.9em;
    letter-spacing: 2px;
    margin-bottom: 5px;
}
@media (min-width: 640px)and (max-width: 750px) {
   .uf-form h2 {
        font-size: 0.7em;
    } 
}
@media (max-width: 640px) {
    .uf-form h2 {
        font-size: 0.5em;
    }
}
.uf-fields > li label {
	position: relative;
}

.uf-fields > li label.uf-field-label {
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
	display: inline-block;
	padding: 0 5px 0 0;
	letter-spacing: 3px;
	pointer-events: none;
	color: #eee;
	font-size: 1.7em;
    text-transform: uppercase;
    max-width: 85%;
    height: 170px;
}
@media (min-width: 640px)and (max-width: 750px) {
    .uf-fields > li label.uf-field-label {
        font-size: 1.35em;
        max-width: 100%;
    }
}
@media (max-width: 640px) {
    .uf-fields > li label.uf-field-label {
        font-size: 0.95em;
        height: 125px;
        letter-spacing: 2px;
        max-width: 100%;
    }
}
.uf-form-full .uf-fields > li label[data-info]::after {
	position: relative;
    display: inline-block;
    margin-left: 110px;
    margin-top: -15px;
    width: 24px;
    height: 24px;
    letter-spacing: 3px;
    color: #198aaf;
    content: 'Info';
    vertical-align: top;
    text-align: left;
    font-weight: 700;
    font-size: 14px;
    font-family: 'Roboto', sans-serif;
    text-transform: uppercase;
    line-height: 22px;
    cursor: pointer;
    pointer-events: auto;
    -webkit-transition: all 200ms ease-in;
    -moz-transition: all 200ms ease-in;
    -ms-transition: all 200ms ease-in;
    -o-transition: all 200ms ease-in;
    transition: all 200ms ease-in;
}
@media (max-width: 640px) {
    .uf-form-full .uf-fields > li label[data-info]::after {
        margin-left: 80px;
        margin-top: -13px;
        font-size: 0.35em;
    }
}
.uf-form-full .uf-fields > li label[data-info]:hover::after {
    color: #5eadc7;
}

.uf-form-full .uf-fields > li label[data-info]::before {
    position: absolute;
    font-family: 'Droid Serif', serif;
    bottom: 122%;
    left: 0;
    padding: 0 0 10px;
    text-transform: none;
    font-style: italic;
    letter-spacing: 1px;
    min-width: 580px;
    content: attr(data-info);
    font-size: 0.4em;
    color: #717C87;
    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;
}
@media (max-width: 640px) {
    .uf-form-full .uf-fields > li label[data-info]::before {
        bottom: 118%;
        min-width: 100%;
        font-size: 0.5em;
    }
}
.uf-form-full .uf-fields > li label[data-info]:hover::before {
    opacity: 1;
    -webkit-transform: translate3d(0,0,0);
    transform: translate3d(0,0,0);
}

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

/* Inputs */
.uf-fields input {
	display: block;
	position: absolute;
    left: 0;
    margin: -40px 0;
	padding: 0.70em 0.45em 0.72em 0.65em;
	width: 50%;
	border: 4px solid #ddd;
	background-color: #fff;
	color: #666;
	font-weight: 300;
	text-overflow: ellipsis;
	font-size: 0.85em;
	border-radius: 3px;
    text-align: left;
}
@media (min-width: 640px)and (max-width: 750px) {
    .uf-fields input {
        margin: -60px 0;
        font-size: 0.75em;
    }
}
@media (max-width: 640px) {
    .uf-fields input {
        left: 0!important;
    }
}
.icon-input {
    background-size: 28px;
    background-position-x: 4%;
    background-position-y: center;
    background-repeat: no-repeat;
    background-color: #fff;
    padding-left: 7%!important;
    width: 55%!important;
}
@media (min-width: 1115px)and (max-width: 1230px) {
    .icon-input {
        width: 61%!important;
    }
}
@media (min-width: 980px)and (max-width: 1115px) {
    .icon-input {
        width: 62%!important;
    }
}
@media (min-width: 640px)and (max-width: 980px) {
    .icon-input {
        width: 75%!important;
        background-size: 24px;
        padding-left: 2.3em!important;
    }
}
@media (max-width: 640px) {
    .uf-fields input {
        width: 80%;
        border: 3px solid #ddd;
        font-size: 0.65em;
    }
    .icon-input {
        background-size: 21px;
        padding: 0.70em 0.5em 0.72em 2.3em!important;
        width: 100%!important;
    }
    .mobile-icon-input {
        padding: 0.70em 0.5em 0.72em 2.3em!important;
        background-size: 21px;
        width: 100%!important;
        background-position-x: 4%;
        background-position-y: center;
        background-repeat: no-repeat;
        background-color: #fff;
    }
}
.uf-form-overview .icon-input {
    background-size: 17px;
    background-position-x: 4%;
    background-position-y: center;
    background-repeat: no-repeat;
    background-color: #fff;
    padding-left: 4.3%!important;
    width: 38%!important;
}
@media (min-width: 640px)and (max-width: 750px) {
    .uf-form-overview .icon-input {
        padding-left: 2.1em!important;
        width: 45% !important;
    }
}
@media (max-width: 640px) {
    .uf-form-overview .icon-input {
        padding-left: 2.3em!important;
        width: 90% !important;
    }
    .uf-form-overview .mobile-icon-input {
        width: 90% !important;
    }
}

.ii-globe {
    background-image: url('../images/ii-globe.png');
}
.ii-title {
    background-image: url('../images/ii-title.png');
}
.ii-pass {
    background-image: url('../images/ii-password.png');
}
@media (max-width: 640px) {
    .ii-keyword {
        background-image: url('../images/ii-keyword.png');
        background-size: 16px;
    }
}
.line {
    width: 100px;
    height: 6px;
    background-color: #007EA7;
    margin-top: 12px;
}
@media (min-width: 640px)and (max-width: 750px) {
    .line {
        width: 90px;
        height: 5px;
        margin-top: 8px;
    }
}
@media (max-width: 640px) {
    .line {
        width: 70px;
        height: 4px;
        margin-top: 8px;
    }
}

.uf-fields input:invalid {
	box-shadow: none; /* removes red shadow in FF*/
}

.uf-form-overview .uf-fields input {
	margin-top: -35px;
    width: 38%;
    margin-left: 40%;
}
@media (min-width: 640px)and (max-width: 750px) {
    .uf-form-overview .uf-fields input {
        margin-top: -33px;
        margin-left: 43%;
    }
}
@media (max-width: 640px) {
    .uf-form-overview .uf-fields input {
        margin-top: 20px;
        position: relative;
        margin-left: 3%;
        z-index: 9999999999;
    }
}
.uf-form-overview .bre-select {
    margin-left: 40%!important;
}
@media (max-width: 640px) {
    .uf-form-overview .bre-select {
        margin-left: 3%!important;
        margin-top: 20px!important;
    }
}
.uf-form-overview .geo-hrmenu {
    margin-left: 40%!important;
    width: 55%!important;
}
@media (max-width: 640px) {
    .uf-form-overview .geo-hrmenu {
        margin-left: 0 !important;
        margin-top: 60px;
        margin-bottom: 40px;
        width: 100% !important;
    }
}
.uf-form-overview .geotargeting {
    height: 85px!important;
}
@media (max-width: 640px) {
    .uf-form-overview .geotargeting {
        height: auto!important;
        padding-bottom: 0!important;
    }
}
.uf-fields input:focus {
	background-color: #fff; /* Fixes chrome bug with placeholder */
}

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

.uf-form-overview .uf-fields input {
	font-size: 1.2em;
}
@media (min-width: 640px)and (max-width: 750px) {
    .uf-form-overview .uf-fields input {
        font-size: 1.1em;
    }
}
.uf-fields .uf-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;
}

.uf-fields .uf-radio-group {
	margin-top: -40px;
}
@media (min-width: 640px)and (max-width: 750px) {
    .uf-fields .uf-radio-group {
        margin-top: -60px;
    }
    .uf-form-overview .uf-radio-group {
        margin-top: -40px;
    }
}
.uf-fields > li .uf-radio-custom span {
	float: left;
	position: relative;
	margin-right: 3%;
	padding: 10px;
	max-width: 200px;
	width: 30%;
	text-align: left;
	font-weight: 700;
	font-size: 50%;
	font-family: 'Roboto', sans-serif;
}

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

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

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

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

.uf-fields .uf-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%);
}

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

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

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

.uf-fields textarea {
	padding: 0.25em;
	width: 100%;
	height: 200px;
	border: 2px solid rgba(0,0,0,0.2);
	background-color: transparent;
	color: #fffed8;
	font-weight: 700;
	font-size: 0.85em;
	resize: none;
}

.uf-form-overview .uf-fields textarea {
	height: 100px;
	color: rgba(0,0,0,0.5);
}

.uf-fields textarea:focus {
	outline: none;
}

.uf-form-overview .uf-fields textarea {
	padding: 0;
	border-color: transparent;
}

.uf-form-overview .uf-fields textarea:focus {
	background: #fffed8;
}

.uf-form div.bre-select.bre-skin-boxes {
	display: block;
    margin-top: -40px;
}

.uf-form-overview .bre-skin-boxes > span {
	border-radius: 5px;
	width: 90px;
	height: 70px;
	font-size: 1.1em;
}
@media (max-width: 640px) {
    .uf-form-overview .bre-skin-boxes > span {
        font-size: 1em;
    }
}
.uf-form-overview .bre-skin-boxes > span::before {
	padding-top: 50px;
	box-shadow: 0 20px 0 rgba(59, 63, 69, 0.4), inset 0 -5px rgba(59, 63, 69, 0.4);
}

.uf-fields input.uf-mark {
	padding-left: 1em;
	background-position: 0% 0.15em;
	background-size: auto 75%;
	background-repeat: no-repeat;
}

.uf-fields input.uf-mark[required] {
	background-position: 0% 0.15em, top right;
	background-size: auto 75%, 18px;
	background-repeat: no-repeat;
}

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

.uf-fields input:-moz-placeholder,
.uf-fields textarea:-moz-placeholder {
	color: #bbb;
}

.uf-fields input::-moz-placeholder,
.uf-fields textarea::-moz-placeholder {
	color: #bbb;
}

.uf-fields input:-ms-input-placeholder,
.uf-fields textarea:-ms-input-placeholder {
	color: #bbb;
}

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

/* Dot navigation */
.uf-nav-dots {
	display: none;
}

/* Progress bar */
.uf-progress {
	position: fixed;
	top: 0;
	left: 0;
	width: 0%;
	height: 5px;
	background: rgba(204, 237, 250, 0.9);
	-webkit-transition: width 0.3s ease-in-out;
	transition: width 0.3s ease-in-out;
	z-index: 9999999;
}

/* Numbers */
.uf-numbers {
	display: none;
}

/* Continue button and submit button */
button.uf-submit,
button.uf-continue,
button.uf-close,
.divbutton,
button.uf-quick {
	padding: 0.5em 2.05em;
	border-radius: 5px;
    letter-spacing: 1px;
	font-weight: 400;
    font-family: 'Oswald', sans-serif;
	cursor: pointer;
    text-transform: uppercase;
    -webkit-transition: all 200ms ease-in;
    -moz-transition: all 200ms ease-in;
    -ms-transition: all 200ms ease-in;
    -o-transition: all 200ms ease-in;
    transition: all 200ms ease-in;
}

.divbutton,
button.uf-continue {
	border: 3px solid #eee;
	color: #eee;
}
button.uf-quick {
	border: 3px solid #00A8E8;
	color: #00A8E8;
}
@media (max-width: 640px) {
    .divbutton,
    button.uf-continue {
        border: 2px solid #eee;
    }
    button.uf-quick {
        border: 2px solid #00A8E8;
    }
}

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

.uf-form-overview .uf-submit {
    font-size: 1.1em;
    border: 3px solid #00A8E8;
    color: #00A8E8;
    margin-top: 20px;
}
@media (min-width: 640px) and (max-width: 750px) {
    .uf-form-overview .uf-submit {
        font-size: 1em;
    }
}
@media (max-width: 640px) {
    .uf-form-overview .uf-submit {
        font-size: 0.8em;
        border: 2px solid #00A8E8;
    }
}
.uf-form-overview .uf-close {
    font-size: 1.1em;
    border: 3px solid #eee;
    color: #eee;
    margin-top: 20px;
    margin-right: 20px;
}
@media (min-width: 640px) and (max-width: 750px) {
    .uf-form-overview .uf-close {
        font-size: 1em;
    }
}
@media (max-width: 640px) {
    .uf-form-overview .uf-close {
        font-size: 0.8em;
        margin-right: 15px;
        border: 2px solid #eee;
    }
}
button.uf-continue {
	position: absolute;
    left: 0;
    bottom: 0;
    margin: 0 40px 60px 0;
    font-size: 1.35em;
}

button.uf-quick {
	position: absolute;
    right: 0;
    bottom: 0;
    margin: 0 40px 60px 0;
    font-size: 1.35em;
}
@media (min-width: 640px)and (max-width: 750px) {
    button.uf-continue, button.uf-quick {
        font-size: 1.2em;
        margin: 0 0 60px 0;
    }
}
@media (max-width: 640px) {
    button.uf-continue, button.uf-quick {
        font-size: 1em;
        margin-right: 0;
    }
}

button.uf-close:hover,
button.uf-close:focus,
.divbutton:hover,
button.uf-continue:hover {
	background: rgba(187, 187, 187, 0.15);
	color: #fff;
}

button.uf-quick:hover,
button.uf-submit:hover,
button.uf-submit:focus {
	background: rgba(187, 187, 187, 0.15);
	color: #32b9ec;
}

.uf-continue::after {
	display: none;
}

.uf-quick::after {
	display: none;
}

/* Error message */
.uf-message-error {
	position: absolute;
    background: url('../images/warning.png') left no-repeat transparent;
    background-size: 18px;
    background-position: 39px 19px;
    top: 15px;
    left: 50%;
    z-index: 800;
    width: 84%;
    color: #eee;
    border: 2px solid rgba(255, 255, 255, 0.07);
    border-radius: 3px;
    font-family: 'Roboto', serif;
    text-align: left;
    padding: 20px 75px;
    text-transform: none;
    content: attr(data-info);
    font-size: 1.25em;
    opacity: 0;
    -webkit-transform: translate3d(-50%, -5px, 0);
    transform: translate3d(-50%, -5px, 0);
}
@media (max-width: 640px) {
    .uf-message-error {
        background-size: 14px;
        background-position: 19px 14px;
        top: 0;
        padding: 14px 47px;
        font-size: 1.1em;
    }
}
.uf-message-error.uf-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);
}
.uf-login {
	position: absolute;
    background: left no-repeat transparent;
    background-size: 18px;
    background-position: 39px 19px;
    top: 115px;
    left: 50%;
    z-index: 800;
    width: 84%;
    color: #eee;
    border: 2px solid rgba(255, 255, 255, 0.07);
    border-radius: 3px;
    font-family: 'Roboto', serif;
    text-align: left;
    padding: 20px 75px;
    text-transform: none;
    content: attr(data-info);
    font-size: 1.25em;
    opacity: 0;
    -webkit-transform: translate3d(-50%, -5px, 0);
    transform: translate3d(-50%, -5px, 0);
}
@media (min-width: 750px) and (max-width: 1115px) {
    .uf-login {
        background-size: 17px;
        background-position: 38px 17px;
        padding: 18px 70px;
        font-size: 1.2em;
    }
}
@media (min-width: 640px) and (max-width: 750px) {
    .uf-login {
        background-size: 17px;
        background-position: 28px 15px;
        padding: 15px 60px;
        font-size: 1.15em;
    }
}
@media (max-width: 640px) {
    .uf-login {
        background-size: 14px;
        background-position: 19px 14px;
        top: 90px;
        padding: 14px 47px;
        font-size: 1.1em;
    }
}
.uf-login.error {
    background-image: url('../images/warning.png');
}
.uf-login.success {
    background-image: url('../images/success.png');
}
.uf-login.uf-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 */
.uf-form li.uf-current {
	visibility: visible;
}

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

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

.uf-form .uf-display-next .uf-hide .uf-anim-lower,
.uf-form .uf-display-next .uf-hide .uf-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;
}

.uf-form .uf-display-next .uf-hide .uf-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 */
.uf-form .uf-display-next .uf-show .uf-anim-lower,
.uf-form .uf-display-next .uf-show .uf-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;
}

.uf-form .uf-display-next .uf-show .uf-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 */
.uf-form .uf-display-prev .uf-hide {
	visibility: visible;
}

.uf-form .uf-display-prev .uf-hide .uf-anim-lower,
.uf-form .uf-display-prev .uf-hide .uf-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;
}

.uf-form .uf-display-prev .uf-hide .uf-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 */
.uf-form .uf-display-prev .uf-show .uf-anim-lower,
.uf-form .uf-display-prev .uf-show .uf-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;
}

.uf-form .uf-display-prev .uf-show .uf-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;
}

/* Form Keyword input */
.form-keyword-label {
    display: block;
    position: absolute!important;
    left: 0;
    margin: -40px 0;
    padding: 1.05em 0.95em 0.72em 0.85em;
    border: 4px solid #ddd;
    background-color: #ddd;
    font-weight: 400;
    color: #aaa;
    text-overflow: ellipsis;
    font-size: 0.70em;
    border-radius: 3px;
    text-align: left;
}
@media (min-width: 640px)and (max-width: 750px) {
    .form-keyword-label {
        margin: -60px 0;
        padding: 1.05em 0.95em 1.05em 0.85em;
        height: 67px!important;
        font-size: 0.60em;
    }
}
@media (max-width: 640px) {
    .form-keyword-label {
        height: 0!important;
        width: 0;
        z-index: -99;
    }
}
.uf-form-overview .form-keyword-label {
    display: none;
}
.uf-form-overview .form-keyword-input {
    left: 0!important;
}
.form-keyword-input {
    width: 38%!important;
}
@media (max-width: 640px) {
    .form-keyword-input {
        width: 100%!important;
    }
}