footer {
    position: relative;
}

#chatContainer,
#anon-form-container {
    display: none;
    position: fixed;
    bottom: 0;
    right: calc(5px + 9%);
    z-index: 1030;
    background: #fff;
    border: 1px solid #000;
    width: 300px;
    height: 391px;
    padding: 6px 0 17px 0;
    color: #666;
}

#chatContainer{
    padding: 0;
}

.web-chat-button-container {
    margin: 60px 60px -80px 60px;
    float: right;
}

.web-chat-button {
    text-transform: uppercase;
    color: black;
    background-color: white;
    padding: 10px 35px;
    z-index: 1031;
}

#open-web-chat {
    float: right;
}

#starChat {
    margin-top: auto;
    border-radius: 0;
    background-color: #000;
    color: #fff;
}

#starChat:hover {
    color: #fff;
}

.anon-form-body {
    display: flex;
    flex-direction: column;
    height:100%;
    width:100%;
    padding: 0 37px;
}

/* styling form */
#anon-form {
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
}

.form-group:first-child {
    margin-top: auto;
}

.anon-form-body ::-webkit-input-placeholder { /* Chrome/Opera/Safari */
    text-align: left !important;
}
.anon-form-body ::-moz-placeholder { /* Firefox 19+ */
    text-align: left !important;
}
.anon-form-body :-ms-input-placeholder { /* IE 10+ */
    text-align: left !important;
}
.anon-form-body :-moz-placeholder { /* Firefox 18- */
    text-align: left !important;
}

.anon-form-header {
    display: flex;
    width: 100%;
    padding: 0 12px;
}

.anon-form-header-title {
    margin: 0 auto;
    color: #000;
}

#close-web-chat {
    color: #000;
    align-self: center;
    cursor: pointer;
}

#close-chat{
    position: absolute;
    top: 12px;
    left: 20px;
    cursor: pointer;
    z-index: 1200;
    background-image: url('images/live-chat-close.png') !important;
}

#anon-form input {
    border: 0;
    outline: 0;
    background: transparent;
    border-bottom: 1px solid #666;
    width:100%;
    color:#000;
    margin-bottom:6px;
    border-radius: 0;
    box-shadow: none;
}

#anon-form input::-webkit-input-placeholder { /* WebKit, Blink, Edge */
    color:rgba(0,0,0,0.35);
    text-align:center;
}
#anon-form input:-moz-placeholder { /* Mozilla Firefox 4 to 18 */
    color:rgba(0,0,0,0.35);
    text-align:center;
}
#anon-form input::-moz-placeholder { /* Mozilla Firefox 19+ */
    color:rgba(0,0,0,0.35);
    text-align:center;
}
#anon-form input:-ms-input-placeholder { /* Internet Explorer 10-11 */
    color:rgba(0,0,0,0.35);
    text-align:center;
}
#anon-form input:-ms-input-placeholder { /* Microsoft Edge */
    color:rgba(0,0,0,0.35);
    text-align:center;
}

#open-web-chat {
    position: fixed;
    bottom: 0;
    right: calc(5px + 9%);
    background-color: #000;
    width: 46px;
    height: 48px;
    display: flex;
    z-index: 1000;
}

#open-web-chat img {
    float: left;
    margin: auto;
    width:33px;
    height: 30px;
}

@media only screen and (max-width: 768px) {
    #open-web-chat {
        right: calc(9% + 10px);
    }

    #chatContainer,
    #anon-form-container {
        right: calc(9% + 10px);
    }
}

@media only screen and (max-width: 479px){

    #open-web-chat {
        right: calc(3% + 10px);
    }

    #chatContainer,
    #anon-form-container {
        height: calc(100% - 49px);
        width: 100%;
        right: 0;
    }
}

#chatContainer,
#anon-form-container {

    font-size: 12px;
}

.web-chat-button {
    font-size: 1.10em;

}

.anon-form-header-title {
    font-family: freight-big-pro, serif;
    font-weight: 700;
}

