﻿.chatbot-section {
    position: fixed;
    bottom: 0;
    right: -500px;
    font-family: 'DINWeb';
    font-weight: normal;
    font-size: 14px;
    z-index: 99;
    line-height: 1
}

.ask-chatbot {
   position: relative;
    background: #8fce3f;
    padding: 10px 40px 10px 10px;
    margin-right: 50px;
    display: block;
    text-decoration: none;
}

    .ask-chatbot:hover {
        background: #50870a;
        text-decoration: none;
        cursor: pointer;
    }

    .ask-chatbot > div {
        display: inline-block;
        vertical-align: top;
        margin: 0 5px;
    }

        .ask-chatbot > div:nth-child(2) {
            font-size: 16px;
            color: #ffffff;
            padding-top: 7px;
        }

    .ask-chatbot .avatar img {
    border-radius: 50%;
    display: block;
    max-width: 85px;
}
    .ask-chatbot .avatar {
    position: absolute;
    bottom: 0;
    right: -50px;
    margin: 0;
}
.speech-bubble-wrapper {
    position: absolute;
    top: -65px;
    right: 89px;
    display: none;
}

.speech-bubble {
    display: inline-block;
    background: #818285;
    /*border-bottom: 2px #555555 solid;*/
    color: #ffffff;
    padding: 10px 10px 5px;
    position: relative;
    width: 200px;
}

  .speech-bubble:before {
    font-family: "fontello";
    content: '\e802';
    font-size: 27px;
    color: #818285;
    position: absolute;
    top: 35px;
    right: 46%;
    line-height: 1.5;
    -webkit-transform: rotate(90deg) scale(1,1.5);
    -ms-transform: rotate(90deg) scale(1,1.5);
    transform: rotate(90deg) scale(1,1.5);
    }

    .speech-bubble-icon {
        font-size: 16px;
        color: #818285;
        position: absolute;
        top: 23px;
        right: -10px;
        line-height: 1;
    }

    .speech-bubble .icon-chatbot {
        display: inline-block;
        vertical-align: top;
        margin-right: 5px;
        margin-top: 3px;
    }

    .speech-bubble .desc {
        display: inline-block;
        vertical-align: top;
        line-height: 18px;
    }
