form.active_label p {
    line-height: 0;
}
form.active_label input, form.active_label textarea {
    margin-bottom: 1em;
    width: 100%;
}
form.active_label .submit {
    background-color: #4f4f4f;
    color: #fff;
    padding: 0;
    width: 11rem;
}
form.active_label label {
    box-sizing: border-box;
	color: #000;
	font-size: 0.85714em;
    font-weight: bold;
    line-height: 1.5rem;
    margin-top: 2.2em;
    opacity: 0;
    overflow: hidden;
    padding: 0 0.93333em;
    pointer-events: none;
    position: absolute;
    text-overflow: ellipsis;
    top: 0;
	transition: all 0.2s ease-out;
    user-select: none;
    white-space: nowrap;
    width: 100%;
    z-index: 1;
}
form.active_label label.active_label {
	margin-top: 0;
	padding-left: 0.5rem;
	opacity: 1;
}
form.active_label input.active_input, form.active_label textarea.active_input {
	padding: 1.5em 0 0.5em 0.5rem;
}
form.active_label p, form.active_label div {
	position: relative;
}
form.active_label input, form.active_label textarea {
	padding: 0.5rem 0 0.5rem 0.5rem;
}
form.active_label input {
    height: 3em;
}
form.active_label textarea {
}
@media only screen and (max-width: 600px) {
    form.active_label .submit {
        width: 100%;
    }
}