/* Fancy Options */
div.input-row {
	overflow: hidden;
	position: relative;
	margin-bottom: 0px;
}
div.input-row input[type=text], div.input-row input[type=email], div.input-row input[type=number], div.input-row input[type=password], div.input-row textarea {
	padding: 15px 15px 5px 15px;
	border: 0px;
	border-bottom: 1px solid #cccccc;
	line-height: 26px;
	height: 47px;
	font-size: 16px;
	background-color: transparent;
}
div.input-row textarea {
	padding-top: 0px;
	margin-top: 20px;
}
div.input-row select {
	border: 0px;
	border-bottom: 1px solid #cccccc;
	cursor: pointer;
	padding-top: 10px;
	padding-bottom: 9px;
	height: 47px;
}
div.input-row label {
	position: absolute;
	top: 12px;
	left: 15px;
	font-weight: normal;
	
	-webkit-touch-callout: none;
    -webkit-user-select: none;
     -khtml-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
			
	padding: 0px;
    margin: 0px;
}
div.input-row.focus label, div.input-row.forceFocus label {
	font-size: 10px;
	top: 1px;
	font-weight: bold;
}
div.input-row input:focus, div.input-row textarea:focus, div.input-row select:focus {
	border-color: #055a89;
	outline: none;
}
div.input-row input:disabled, div.input-row textarea:disabled, div.input-row select:disabled, div.input-row input:read-only, div.input-row textarea:read-only {
	cursor: default;
}
div.input-row.readonly {
	background-color: rgba(0, 0, 0, 0.02);
	cursor: default;
}
input.btn {
	margin-top: 14px;
}


@keyframes shake {
  10%, 90% {
    transform: translate3d(-1px, 0, 0);
  }
  
  20%, 80% {
    transform: translate3d(2px, 0, 0);
  }

  30%, 50%, 70% {
    transform: translate3d(-4px, 0, 0);
  }

  40%, 60% {
    transform: translate3d(4px, 0, 0);
  }
}
form.invalid {
	animation: shake 0.82s cubic-bezier(.36,.07,.19,.97) both;
	transform: translate3d(0, 0, 0);
}