﻿/* 
    Quote forms on top and bottom of page.
*/
.floatPlaceHolderFormGroup {
    position: relative;
    margin-bottom: 1.5rem;
}

.floatPlaceHolderFormGroupPlaceHolder {
    position: absolute;
    top: 0;
    padding: 7px 0 0 13px;
    transition: all 200ms;
    opacity: 0.5;
}

.form-control:focus + .floatPlaceHolderFormGroupPlaceHolder,
.form-control:not(:placeholder-shown) + .floatPlaceHolderFormGroupPlaceHolder {
    font-size: 85%;
    transform: translate3d(0, -100%, 0);
    opacity: 1;
}