@charset "utf-8";

        /* ---------- GENERAL ---------- */

        html,
        body {
            background: #efefef;
            height: 100%;
            font-family: 'Lato', sans-serif;
        }
        .image_outer_container .green_icon{
            background-color: #4cd137;
            position: absolute;
            right: 0px;
            bottom: 5px;
            height: 20px;
            width: 20px;
            border:5px solid white;
            border-radius: 50%;
           }
        #center-text {
            /* display: flex; */
            flex: 1;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            height: 100%;
        }

        .bar_sup{
            background-color: blue;
        }


        /* ---------- GENERAL STYLE---------- */

        .chat-box-welcome__company-name,
        .chat-box__sign {
            font-family: 'Lato', sans-serif;
            position: relative;
        }


        /*powered by deeppixel*/

        .chat-box__sign {
            font-size: 9px;
            line-height: 20px;
            /*color: #a2a2a2;*/
            color: #b5b5b5;
        }

        .chat-input-box {
            text-align: center;
            position: relative;
        }

        .btn#my-btn {
            background: white;
            padding-top: 13px;
            padding-bottom: 12px;
            border-radius: 45px;
            padding-right: 40px;
            padding-left: 40px;
            color: #5865C3;
        }

        .options-btn {
            border: 1px solid rgba(246, 72, 72, 1);
        }
        .spiner > *  {
            background: rgba(246, 72, 72, 1);
        }

        #chat-circle {            
            position: fixed;
            bottom: 50px;
            right: 50px;
            width: 80px;
            height: 80px;
            color: rgba(0,0,0,0);
            padding: 15px;
            cursor: pointer;
        }

        #chat-overlay {
            background: rgba(255, 255, 255, 0.1);
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border-radius: 50%;
            display: none;
        }

        .chat-circle_robot {
            height: 50px;
        }

        .chat-box-welcome {
            background: #f8f8f8;
            position: fixed;
            right: 30px;
            bottom: 50px;
            width: 350px;
            max-width: 85vw;
            max-height: 100vh;
            border-radius: 3px;
            box-shadow: 0px 5px 35px 9px #ccc;
        }

        .chat-box-welcome__header {
            height: 420px;
            border-top-left-radius: 3px;
            border-top-right-radius: 3px;
            display: none;
        }

        .chat-box__header-text {
            color: white;
            padding-left: 10px;
            font-size: 20px;
            padding-top: 13px;
        }

        #chat-box-welcome__ava {
            background: rgba(0, 0, 0, 0.38);
            border-radius: 50%;
            position: absolute;
            top: 98px;
            left: 124px;
            width: 100px;
            height: 100px;
            border-radius: 50%;
            color: white;
            padding: 22px;
        }

        .chat-box-welcome_robot {
            height: 75px;
            position: absolute;
            top: 12px;
        }

        .chat-box-welcome__welcome-text {
            color: #fff;
            text-align: center;
            width: 80%;
            position: relative;
            top: 45%;
            left: 50%;
            transform: translateX(-50%);
        }

        .chat-box-welcome__welcome-text p {
            font-size: 24px;
        }

        #chat-box__wraper {
            display: none;
        }

        .chat-box {
            display: none;
            background: #f8f8f8;
            position: fixed;
            right: 30px;
            bottom: 50px;
            width: 350px;
            max-width: 85vw;
            max-height: 100vh;
            border-radius: 3px;
            box-shadow: 0px 5px 35px 9px #ccc;
        }

        .chat-box-toggle {
            float: right;
            margin-right: 15px;
            cursor: pointer;
        }

        .chat-box-header {
            position: relative;
            height: 50px;
            border-top-left-radius: 3px;
            border-top-right-radius: 3px;
            color: white;
            padding-left: 10px;
            font-size: 20px;
            padding-top: 13px;
        }

        .chat-box-body {
            position: relative;
            height: 370px;
            height: auto;
            border-bottom: 1px solid rgba(181, 181, 181, 0.42);
            overflow: hidden;
        }

        .chat-box-body:after {
            content: "";
            background-color: #F8F8F8;
            opacity: 0.1;
            top: 0;
            left: 0;
            bottom: 0;
            right: 0;
            height: 100%;
            position: absolute;
            z-index: -1;
        }

        .chat-input__text {
            background: #fff;
            width: 95%;
            position: relative;
            height: 47px;
            padding-top: 10px;
            padding-right: 50px;
            padding-bottom: 10px;
            padding-left: 15px;
            margin-top: 5px;
            resize: none;
            outline: none;
            border: 1px solid #F2F0F0;
            color: #888;
            border-radius: 3px;
            overflow: hidden;
        }

        .chat-input-box>form {
            margin-bottom: 0;
        }

        .chat-input__text::-webkit-input-placeholder {
            /* Chrome/Opera/Safari */
            color: #ccc;
        }

        .chat-input__text::-moz-placeholder {
            /* Firefox 19+ */
            color: #ccc;
        }

        .chat-input__text:-ms-input-placeholder {
            /* IE 10+ */
            color: #ccc;
        }

        .chat-input__text:-moz-placeholder {
            /* Firefox 18- */
            color: #ccc;
        }

        .chat-submit {
            position: absolute;
            bottom: 27px;
            right: 10px;
            background: transparent;
            box-shadow: none;
            border: none;
            border-radius: 50%;
            color: rgba(250, 65, 95, 0.99);
            width: 35px;
            height: 35px;
        }

        .chat-logs {
            padding: 15px;
            height: 370px;
            overflow-y: scroll;
        }

        @media only screen and (max-width: 500px) {
            .chat-logs {
                height: 40vh;
            }
        }

        .chat-msg.bot>.msg-avatar {
            width: 45px;
            height: 45px;
            border-radius: 50%;
            float: left;
            width: 15%;
            padding: 9px;
            position: relative;
        }

        .chat-box-overlay_robot {
            height: 35px;
            position: absolute;
            top: 5px;
        }

        .cm-msg-text {
            background: white;
            padding: 10px 15px 10px 15px;
            color: #666;
            max-width: 75%;
            float: left;
            margin-left: 10px;
            position: relative;
            margin-bottom: 20px;
            border-radius: 3px;
        }

        .options-btn {
            background: white;
            padding: 10px 15px 10px 15px;
            color: #666;
            width: 75%;
            margin-left: 55px;
            position: relative;
            margin-bottom: 20px;
            border-radius: 3px;
            text-align: center;
        }


        .chat-msg {
            clear: both;
        }

        .chat-msg.self>.cm-msg-text {
            float: right;
            background: #efefef;
        }

        .cm-msg-button>ul>li {
            list-style: none;
            float: left;
            width: 50%;
        }

        .cm-msg-button {
            clear: both;
            margin-bottom: 70px;
        }

        .spin-container {
            color: #666;
            max-width: 75%;
            bottom: 4px;
            left: 50%;
            position: absolute;
            display: none;
        }

        .spiner {
        position: absolute;
        left: 50%;
        top: 50%;
        margin: -10px 0 0 -20px;
        display: inline-block;
        position: relative;
        height: 20px;
        width: 40px;
        }
        .spiner > * {
        position: absolute;
        top: 5px;
        height: 10px;
        width: 10px;
        border-radius: 50%;
        opacity: 0.6;
        -webkit-transform: translateX(0px);
        transform: translateX(0px);
        }
        .spiner > *:nth-child(1) {
        left: 0;
        -webkit-animation: mymove 1.3s infinite ease-in;
        animation: mymove 1.3s infinite ease-in;
        }
        .spiner > *:nth-child(2) {
        left: 12px;
        -webkit-animation: mymove 1.3s 0.3s infinite ease-in;
        animation: mymove 1.3s 0.3s infinite ease-in;
        }
        .spiner > *:nth-child(3) {
        left: 24px;
        -webkit-animation: mymove 1.3s 0.6s infinite ease-in;
        animation: mymove 1.3s 0.6s infinite ease-in;
        }

        @-webkit-keyframes mymove {
        0%,
        100%,
        80% {
            opacity: 0.6;
            -webkit-transform: scale(0.4);
        }
        40% {
            opacity: 1;
            -webkit-transform: scale(1);
        }
        }
        @keyframes mymove {
        0%,
        100%,
        80% {
            opacity: 0.6;
            transform: scale(0.4);
        }
        40% {
            opacity: 1;
            transform: scale(1);
        }
        }