
#sticky-form {
    height: 40px;
    text-align: center;
    width: 100%;
    margin: 0 auto;
    padding: 0;
    padding-top: 5px;
    position: fixed;
    bottom: 0;
    background: #215577;
    z-index: 1000000;
    -webkit-box-shadow: 0 -10px 8px 0 rgba(0,0,0,.18);
    box-shadow: 0 -10px 8px 0 rgba(0,0,0,.18);
    -webkit-transition: all 150ms ease-out;
    -moz-transition: all 150ms ease-out;
    -ms-transition: all 150ms ease-out;
    -o-transition: all 150ms ease-out;
    transition: all 150ms ease-out;
    padding-bottom: 10px;
    bottom: -100px;
}

#sticky-form.active {
    bottom: 0;
}
#sticky-form.submitted {
    bottom: -1000px;
}
#sticky-form.sticky-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: inline-block;
}
#sticky-form input {
    font-size: .8rem;
    width: 20%;
    margin-left: 1%;
    margin-right: 1%;
    max-width: 1010px;
    display: inline-block;
    text-align: center;
    height: 20px;
    margin-top: 4px;
    border: none;
    background: transparent;
    color: #fff;
    border-bottom: 1px solid #fff;
    font-family: gotham-book, arial, sans-serif;
}
#sticky-form input:active {
    outline: none !important;
}
#sticky-form input::-webkit-input-placeholder {
    color: #fff !important;
    text-transform: uppercase;
}
#sticky-form input:-moz-placeholder {
    /* Firefox 18- */
    color: #fff !important;
    text-transform: uppercase;
}
#sticky-form input::-moz-placeholder {
    /* Firefox 19+ */
    color: #fff !important;
    text-transform: uppercase;
}
#sticky-form input:-ms-input-placeholder {
    color: #fff !important;
    text-transform: uppercase;
}
#sticky-form input.submit-button {
    background: #fff;
    color: #555 !important;
    height: 23px;
    -webkit-transition: all 150ms ease-in-out;
    -moz-transition: all 150ms ease-in-out;
    -ms-transition: all 150ms ease-in-out;
    -o-transition: all 150ms ease-in-out;
    transition: all 150ms ease-in-out;
    line-height: 10px;
    border-radius: 15px;
}
#sticky-form input.submit-button:hover {
    background: #ccc;
    border: 1px solid #fff;
    color: #fff;
}