
.chat-open {
    display: inline-block;
    background: #ca4927;
    color: #ffffff;
    text-align: center;
    min-width: 100px;
    width: auto;
    padding: .5em 1em;

    position: fixed;

    bottom: 0;
    right: 1em;

    cursor: pointer;

    z-index: 9999;

    font-size: 18px;
}

.chat_pop_up {

    z-index: 10001;
    /*background: #0b6eb3;*/
    overflow: auto;
}

#contact_form h2{
    padding-top: 0;
    margin-top: 0;
}

#contact_form .cart_btn {
    margin-bottom: 0;
}

#contact_form label {
    margin-top: .3em;
    margin-bottom: 0;

}

#contact_form  .close-reveal-modal {
    font-size: 2em;
    padding-right: 5px;
    color: #666666;
}


#contact_form .messages {
    padding: .5em 0;
    background: #eff1e8;
    border: 1px solid lightgrey;
    color: #666666;
    margin-bottom: 1em;

    line-height: 1.3em;
}

#contact_form .messages.error {
    background: #facdc4;
    border: 1px solid orangered;
    color: darkred;
}

#contact_form .messages.success {
    background: #edfae5;
    border: 1px solid mediumseagreen;
    color: darkgreen;
}

#contact_form .messages > span {
    padding: 0 10px;
    display: block;
}

#contact_form .messages > h4 {
    padding: 0 10px;
    margin: 0 0 5px 0;
    display: block;
    font-size: 1.2em;

    font-weight: normal;
}

#contact_form .messages > h4:last-child {
    padding: 0 10px;
    margin: 0;
    display: block;
    font-size: 1.2em;
}


.chat_pop_up.progress  {
    background: #ccc;
    color: #939393;
    cursor: progress;
}

.chat_pop_up:disabled  {
    background: #ccc;
    color: #939393;
    cursor: progress;
}

#contact_form .error {
    background: #faf2f0;
    border: 1px solid orangered !important;
    color: darkred;
}


#contact_form {
    max-height: 100vh;
}


@media screen and (max-width: 768px) {
    .chat_pop_up {
        box-sizing: border-box;
        visibility: hidden;
        top: 0 !important;
        left: 0 !important;

        margin-left: 0 !important;

        width: 100vw;
        position: fixed;
        z-index: 19010;

        border-radius: 3px;
        box-shadow: 0px 0px 30px -2px rgba(0, 0, 0, 0.1);
        background: #fff;
        display: table-cell;

        padding: 30px;
        padding-bottom: 0;
    }



    .chat_pop_up .cart_btn {
        margin-bottom: 50px !important;
    }
}