@charset "utf-8";
/* CSS Document */


.ffl-wrapper {
    @include floating-form-labels(1.25rem, 1rem);
	position: relative;
	display: block;
	overflow: auto;
	margin-bottom: 20px;
}

.ffl-label {
	color: #ccc;
	line-height: 1.2em;
	position: absolute;
	padding: 20px 0 0 5px;
	font-size: 18px;
	-webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
	transition: all 0.5s ease;
}
.ffl-floated label.ffl-label {
	color: #fff !important;
	font-size: 13px !important;
	padding: 0 !important;
	-webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
	transition: all 0.5s ease;
}

.ffl-wrapper input,
.ffl-wrapper textarea {
    transition: border-bottom 100ms ease;
    display: block;
    width: 96%;
    padding: 20px 1% 8px 3%;
    margin-bottom: 10px;
	box-shadow: none;
	-webkit-appearance: none;
    outline: none;
	background-color: transparent;
	border-style: none;
    border-bottom: 1px solid #ccc;
    height: 20px;
	color: #fff;
	font-size: 18px;
	font-weight: 300px;
	-webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
	transition: all 0.5s ease;
}
.ffl-wrapper input:hover,
.ffl-wrapper textarea:hover {
	border-bottom: 1px solid #fff;
}
.ffl-wrapper input:focus,
.ffl-wrapper textarea:focus {
	border-bottom: 1px solid #fff;
}

.ffl-wrapper textarea {
    resize: none;
    min-height: 80px; 
}

label span{
	color: #cccccc;
}

.ffl-submit {
	position: relative;
	border: none;
	background-color: #fff;
	color: #1e5852;
	padding: 8px 50px;
	cursor: pointer;
	font-size: 24px;
	-webkit-transition: all 1s ease;
    -moz-transition: all 1s ease;
    -o-transition: all 1s ease;
	transition: all 1s ease;
}

.ffl-submit:hover,
.ffl-submit:active,
.ffl-submit:focus {
	background-color: #1e5852;
	color: #fff;
	-webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
	transition: all 0.4s ease;
}

.error {
	display: inline-block;
	background-color: #fff;
	padding: 6px 20px;
	margin-bottom: 10px;
	position: relative;
	color: #F60;
	font-size: 16px;
	-webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
	transition: all 0.4s ease;
	
}

.sugarbowl {
	display: none;
}

#msg {
	position: relative;
	display: none;
    width: 94%;
    padding: 8px 3%;
    background: #fff;
    color: #d7735a;
    margin: 20px 0;
    font-size: 16px;
	-webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
	transition: all 0.4s ease;
}