.chat-widget-wrapper {
    display: block;
    width: 300px;
    height: 62px;
    position: fixed;
    bottom: 20px;
    right: 0;
    cursor: pointer;
    animation: all 2s linear;
    z-index: 999;
}

.chat-widget-container {
    position: relative;
    padding: 10px;
    background-color: #fff;
    border-radius: 4px;
}
.chat-widget-container.open {
    border-top-right-radius: 0;
    border-top-left-radius: 0;
}
.chat-widget-container .chat-widget-text p {
    margin: 0 auto;
    color: #808080;
}
.chat-widget-container .chat-widget-text p.heading {
    color: #00aeef;
    font-weight: 600;
}

.chat-widget-avatar {
    width: 80px;
    height: 80px;
    position: absolute;
    top: -11px;
    right: 30px;
    border: 4px solid #fff;
    border-radius: 50%;
}

.chat-box-container {
    position: absolute;
    width: 300px;
    height: 0;
    background-color: #f1f1f1;
    bottom: 10px;
    border-top-right-radius: 4px;
    border-top-left-radius: 4px;
    overflow: auto;
    -webkit-transition: all 0.2s ease 0s;
    -moz-transition: all 0.2s ease 0s;
    -ms-transition: all 0.2s ease 0s;
    -o-transition: all 0.2s ease 0s;
    transition: all 0.2s ease 0s;
    z-index: -1;
}
.chat-box-container.show {
    bottom: 72px;
    height: 300px;
}
.chat-box-container .chat-box-nav {
    background-color: #00aeef;
    width: 100%;
    height: 40px;
}
.chat-box-button {
    padding:6px 12px 6px 12px;
    color:#fff;
    background-color:#5A5EB9;
    max-width:75%;
    margin:0 auto;
    margin-top:10px;
    margin-bottom:10px;
    position:relative;
    border-radius:10px;
}
.chat-box-button a {
    color: #ffffff;
    text-decoration: none;
    font-size: 10pt;
}
.chat-box-message {
    padding:6px 12px 6px 12px;
    color:#000000;
    background-color:#5ec58c;
    max-width:75%;
    margin:0 auto;
    margin-top:10px;
    margin-bottom:10px;
    position:relative;
    border-radius:10px;
    font-size: 10pt;
}
.chat-box-template-message {
    padding:6px 12px 6px 12px;
    color:#000000;
    background-color:#5ec58c;
    max-width:75%;
    margin:0 auto;
    margin-top:10px;
    margin-bottom:10px;
    position:relative;
    border-radius:10px;
    font-size: 10pt;
}
.chat-box-template-message a {
    color: #00ffff;
    text-decoration: underline;
}

.chat-box-request {
    padding:6px 12px 6px 12px;
    color:#000000;
    background-color:#CCC;
    max-width:75%;
    margin:0 auto;
    margin-top:10px;
    margin-bottom:10px;
    position:relative;
    border-radius:10px;
    font-size: 10pt;
}

.chat-box-error {
    padding:6px 12px 6px 12px;
    color:#000000;
    background-color:#e7c3c3;
    max-width:75%;
    margin:0 auto;
    margin-top:10px;
    margin-bottom:10px;
    position:relative;
    border-radius:10px;
    font-size: 10pt;
}