﻿/* NOVO CSS */

.area-openchat {
    background-color: red;
    color: white;
    padding: 15px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    opacity: 0.8;
    position: fixed;
    bottom: 40px;
    right: 28px;
    width: 260px;
}

.close-questionchat {
    float: right;
    position: relative;
    top: -1px;
    left: 5px;
    padding: 6px 4px 2px;
    z-index: 2;
    color: #ffffff;
    text-shadow: 0px -1px 0px #999;
    border-radius: 5px;
}

.open-questionchat-title {
    position: relative;
    font-size: 20px;
    font-weight: bold;
    font-family: Verdana;
    font-style: normal;
    color: #ffffff;
}

.open-questionchat-subtitle {
    position: relative;
    z-index: 1;
    margin-top: 5px;
    font-size: 14px;
    font-style: italic;
    color: #ffffff;
}

.open-questionchat {
    position: relative;
    z-index: 1;
    margin-top: 5px;
    font-size: 12px;
    font-style: italic;
    color: #ffffff;
}

/* Button used to open the chat form - fixed at the bottom of the page */
.area-openbutton {
    background-color: red;
    color: white;
    padding: 5px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    opacity: 0.8;
    position: fixed;
    bottom: 3px;
    right: 28px;
    width: 280px;
}

.open-chatbalao {
    position: relative;
    z-index: 1;
    margin-top: 2px;
    margin-left: 19px;
    font-size: 12px;
    font-style: italic;
    color: #ffffff;
    height: 15px;
}

.open-button {
    background-color: red;
    color: white;
    padding: 5px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    opacity: 0.8;
    position: fixed;
    bottom: 3px;
    right: 28px;
    width: 280px;
}

/* The popup chat - hidden by default */
.form-popup {
    display: none;
    position: fixed;
    bottom: 0;
    right: 0px; /*15px;*/
    border: 3px solid #f1f1f1;
    z-index: 9;
}

/* Add styles to the form container */
.form-container {
    max-width: 300px;
    padding: 10px;
    background-color: white;
}

    /* Full-width textarea */
    .form-container textarea {
        width: 100%;
        padding: 15px;
        margin: 5px 0 22px 0;
        border: none;
        background: #f1f1f1;
        resize: none;
        min-height: 200px;
    }

        /* When the textarea gets focus, do something */
        .form-container textarea:focus {
            background-color: #ddd;
            outline: none;
        }

    /* Set a style for the submit/login button */
    .form-container .btn {
        background-color: #4CAF50;
        color: white;
        padding: 16px 20px;
        border: none;
        cursor: pointer;
        width: 100%;
        margin-bottom: 10px;
        opacity: 0.8;
    }

    /* Add a red background color to the cancel button */
    .form-container .cancel {
        background-color: red;
    }

    /* Add some hover effects to buttons */
    .form-container .btn:hover, .open-button:hover {
        opacity: 1;
    }

#web-chat-icon_OLD {
    background-color: #1b85e0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 2;
    position: fixed;
    width: 4%;
    max-width: 60px;
    min-width: 48px;
    max-height: 60px;
    min-height: 48px;
    right: 35px;
    bottom: 35px;
    transition: transform 200ms, opacity 500ms, visibility 500ms;
    box-shadow: 0 1px 6px rgba(0, 0, 0, 0.1), 0 2px 32px rgba(0, 0, 0, 0.1);
    background-size: 100%;
    background-repeat: no-repeat;
    background-position: center;
}
#web-chat-icon {
    background-color: transparent;
    /*    background-color: #d22828;
    border-radius: 50%;*/
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 2;
    position: fixed;
    /*    width: 4%;
    max-width: 60px;
    min-width: 48px;
    max-height: 60px;
    min-height: 48px;
    right: 35px;
    bottom: 35px;
    */
    bottom: 0;
    right: 30px;
    transition: transform 200ms, opacity 500ms, visibility 500ms;
    /*    box-shadow: 0 1px 6px rgba(0, 0, 0, 0.1), 0 2px 32px rgba(0, 0, 0, 0.1);*/
    background-size: 100%;
    background-repeat: no-repeat;
    background-position: center;
}