/*main*/
#int_chatbot {
    position: fixed;
    width: 300px;
    bottom: 10px;
    top: auto;
    border-radius: 10px;
    z-index: 1001;
}
/**/
.chat-bot-link,
.chat-bot-link:active {
    font-size: 11px;
    color: #000;
}
/*head*/
#int_chatbot .chatbot_head {
    position: relative;
    padding: 5px 15px;
    box-sizing: border-box;
    min-height: 70px;
    height: 1px;
    max-height: 100px;
    cursor: pointer;
    border-radius: 10px;
}
#int_chatbot .chatbot_head .ctb_valign {
    display: inline-block;
    height: 100%;
    vertical-align: middle;
}
#int_chatbot .chatbot_head .ctb_head_img_manager {
    display: inline-block;
    vertical-align: middle;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}
#int_chatbot .chatbot_head .ctb_head_title {
    display: inline-block;
    max-width:190px;
    box-sizing: border-box;
    padding-left: 10px;
    vertical-align: middle;
    color: #ffffff;
    font-size: 12px;
}
#int_chatbot .chatbot_head .ctb_head_title .ctb_title_position {
    font-size: 15px;
    color: #ffffff !important;
}
#int_chatbot .chatbot_head .ctb_head_title .ctb_title_text {
    font-size: 12px;
    color: #ffffff !important;
}
#int_chatbot .chatbot_head .chatbot_head_mini {
    display: none;
    position: absolute !important;
    top: 25px;
    bottom: auto;
    right: 20px;
    left: auto;
    width: 15px;
    border-bottom: 2px solid white;
}
/**/

/*body*/
#int_chatbot .chatbot_body {
    display: none;
    position: relative;
    width: 95%;
    height: 330px;
    box-sizing:	border-box;
    margin: 0 auto;
    overflow:auto;
    background: #ffffff;
}
#int_chatbot .chatbot_body #ctb_messages {
    width: 100%;
    padding: 6px 15px;
    box-sizing: border-box;
}
#int_chatbot .chatbot_body #ctb_user_textarea {
    position: absolute;
    padding: 0 15px 15px;
    width: 100%;
    left: 0;
    bottom: 0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
#int_chatbot .chatbot_body #ctb_user_textarea #ctb_textarea {
    width: 100%;
    padding: 10px;
    font-size: 12px;
    border-radius: 3px;
    text-align: left;
    outline: none 0px;
    height: 37px;
    min-height: 37px;
    border: 1px solid;
    border-color: #dddcd7;
    resize: none;
    overflow: hidden;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
/**/

/*footer*/
#int_chatbot .chatbot_footer {
    display: none;
    padding: 0 5px;
    height: 20px;
    line-height: 20px;
    text-align: center;
    color: #ffffff !important;
    font-size: 9px;
}

/**/
.int_chatbot .ctb_mes_body {
    position: relative;
    width: 100%;
    border-radius: 5px;
    word-wrap: break-word;
    font-size: 13px;
    box-sizing: border-box;
    padding: 12px 15px;
    border:1px solid rgba(0,0,0,0.1);
}
.int_chatbot .ctb_admin_mes .ctb_mes_body {
    background: #fafafa;
    color: #000000;
}
.int_chatbot .ctb_user_mes .ctb_mes_body {
    background: #ffffff;
    color: #000000;
}

.int_chatbot .ctb_mes_time {
    width: 100%;
    font-size: 10px;
    color: #bdbdbe;
    box-sizing: border-box;
}
.int_chatbot .ctb_admin_mes .ctb_mes_time {
    text-align: left;
}
.int_chatbot .ctb_user_mes .ctb_mes_time {
    text-align: right;
}
.int_chatbot .ctb_mes_wrap {
    margin-bottom: 15px;
}
.int_chatbot .ctb_mes_corner {
    position: absolute;
    margin-top: -5px;
    top: 50%;
    width: 0;
    height: 0;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
}
.int_chatbot .ctb_admin_mes .ctb_mes_corner {
    left: -6px;
    border-right: 5px solid rgba(0,0,0,0.1);
}
.int_chatbot .ctb_user_mes .ctb_mes_corner {
    right: -6px;
    border-left: 5px solid rgba(0,0,0,0.1);
}
#ctb_print_mes .ctb_print_mes_anim{
    text-align: center;
    padding: 10px 0 7px;
}

/*animation print start*/
@-webkit-keyframes print_mes {
    33% {
        -webkit-transform: translateY(10px);
        -ms-transform: translateY(10px);
        transform: translateY(10px);
    }
    66% {
        -webkit-transform: translateY(-10px);
        -ms-transform: translateY(-10px);
        transform: translateY(-10px);
    }
    100% {
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0);
    }
}
@-moz-keyframes print_mes {
    33% {
        -webkit-transform: translateY(10px);
        -ms-transform: translateY(10px);
        -moz-transform: translateY(10px);
        transform: translateY(10px);
    }
    66% {
        -webkit-transform: translateY(-10px);
        -ms-transform: translateY(-10px);
        -moz-transform: translateY(-10px);
        transform: translateY(-10px);
    }
    100% {
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        -moz-transform: translateY(0);
        transform: translateY(0);
    }
}
@-o-keyframes print_mes {
    33% {
        -webkit-transform: translateY(10px);
        -ms-transform: translateY(10px);
        -o-transform: translateY(10px);
        transform: translateY(10px);
    }
    66% {
        -webkit-transform: translateY(-10px);
        -ms-transform: translateY(-10px);
        -o-transform: translateY(-10px);
        transform: translateY(-10px);
    }
    100% {
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        -o-transform: translateY(0);
        transform: translateY(0);
    }
}
@keyframes print_mes {
    33% {
        -webkit-transform: translateY(10px);
        -ms-transform: translateY(10px);
        -moz-transform: translateY(10px);
        -o-transform: translateY(10px);
        transform: translateY(10px);
    }
    66% {
        -webkit-transform: translateY(-10px);
        -ms-transform: translateY(-10px);
        -moz-transform: translateY(-10px);
        -o-transform: translateY(-10px);
        transform: translateY(-10px);
    }
    100% {
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        -moz-transform: translateY(0);
        -o-transform: translateY(0);
        transform: translateY(0);
    }
}
/*animation print end*/

#ctb_print_mes .ctb_print_mes_anim > div{
    display: inline-block;
    background-color: #dddcd7;
    width: 10px;
    height: 10px;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    border-radius: 100%;
    margin: 0 2px;
    -webkit-animation-fill-mode: both;
    -moz-animation-fill-mode: both;
    -o-animation-fill-mode: both;
    animation-fill-mode: both;
} #ctb_print_mes .ctb_print_mes_anim > div:nth-child(1){
      -webkit-animation: print_mes .8s .07s infinite ease-in-out;
      -moz-animation: print_mes .8s .07s infinite ease-in-out;
      -o-animation: print_mes .8s .07s infinite ease-in-out;
      animation: print_mes .8s .07s infinite ease-in-out;
  } #ctb_print_mes .ctb_print_mes_anim > div:nth-child(2){
        -webkit-animation: print_mes .8s .14s infinite ease-in-out;
        -moz-animation: print_mes .8s .14s infinite ease-in-out;
        -o-animation: print_mes .8s .14s infinite ease-in-out;
        animation: print_mes .8s .14s infinite ease-in-out;
    } #ctb_print_mes .ctb_print_mes_anim > div:nth-child(3){
          -webkit-animation: print_mes .8s .21s infinite ease-in-out;
          -moz-animation: print_mes .8s .21s infinite ease-in-out;
          -o-animation: print_mes .8s .21s infinite ease-in-out;
          animation: print_mes .8s .21s infinite ease-in-out;
      }

#ctb_print_mes .ctb_print_notif{
    width: 100%;
    text-align:center;
    font-size:13px;
    color: #bdbdbe;
}
.int_chatbot .ctb_checkbox {
    margin: -1px 3px 0 0;
    vertical-align: middle;
}
.int_chatbot .ctb_mes_admin_contact {
    margin-bottom: 10px;
    color: #000000 !important;
}
.int_chatbot .ctb_checkbox_row {
    text-align: left;
    margin-bottom: 5px;
}
.int_chatbot .ctb_checkbox_row label {
    color: #000000 !important;
}

.int_chatbot .ctb_form_row {
    width: 100%;
    padding: 5px 0;
    box-sizing: border-box;
}
.int_chatbot .ctb_form_row label {
    color: #000000;
}
.int_chatbot .ctb_form_row > input {
    width: 100% !important;
    height: 30px !important;
    -webkit-border-radius: 3px !important;
    -moz-border-radius: 3px !important;
    border-radius: 3px !important;
    padding: 0 10px !important;
    border: 1px solid #dedcd6;
    font: 13px Helvetica, Arial !important;
    -webkit-box-sizing: border-box !important;
    -moz-box-sizing: border-box !important;
    box-sizing: border-box !important;
    text-transform: none !important;
}

.int_chatbot .ctb_contact_next_wrap {
    text-align: center;
}
.int_chatbot .ctb_contact_next {
    display: inline-block;
    vertical-align: middle;
    -webkit-border-radius: 18px;
    -moz-border-radius: 18px;
    border-radius: 18px;
    padding: 8px 23px;
    margin: 10px 0;
    font-size: 12px;
    color: black;
    border: 1px solid #dddcd7;
    background: #ffffff;
    cursor: pointer;
    font-weight: 600;
    overflow: hidden;
}.int_chatbot .ctb_contact_next:hover {
     background: rgba(215,218,0,0.4);
 }.int_chatbot .ctb_contact_next:active {
      box-shadow: 0px 0px 2px rgba(0,0,0,0.5);
  }

.int_chatbot .ctb_contact_send_wrap,
.int_chatbot .ctb_again_wrap {
    margin-top: 10px;
    text-align: center;
    font-size: 0;
}
.int_chatbot .ctb_contact_form_send,
.int_chatbot .ctb_again_send {
    display: inline-block;
    width: 50%;
    text-align: center;
    box-sizing: border-box;
    vertical-align: middle;
    -webkit-border-radius: 18px;
    -moz-border-radius: 18px;
    border-radius: 18px;
    padding: 8px 5px;
    font-size: 13px;
    color: #000000;
    border: 1px solid #dddcd7;
    background: #ffffff;
    cursor: pointer;
    overflow: hidden;
}
.int_chatbot .ctb_contact_form_send:hover,
.int_chatbot .ctb_again_send:hover {
    background: rgba(215,218,0,0.4);
}
.int_chatbot .ctb_contact_form_send:active,
.int_chatbot .ctb_again_send:active {
    box-shadow: 0px 0px 2px rgba(0,0,0,0.5);
}
.int_chatbot .ctb_again_send {
    width: auto;
    padding: 8px 15px;
}
.int_chatbot .ctb_contact_form_back_wrap {
    display: inline-block;
    width: 50%;
    text-align: left;
    font-size: 12px;
    vertical-align: middle;
}
.int_chatbot .ctb_contact_form_back {
    display: inline-block;
    cursor: pointer;
}
.int_chatbot .ctb_contact_form_back_text {
    display: inline-block;
}
.int_chatbot .ctb_contact_form_back_array {
    display: inline-block;
    width: 20px;
    height: 10px;
    background-repeat:no-repeat;
}
.int_chatbot .ctb_mes_admin_result_img {
    display: block;
    width:50px;
    height: 50px;
    margin:10px auto;
    background-repeat:no-repeat;
}
.int_chatbot .ctb_mes_admin_result {
    color: #000000 !important;
}

/*scroll bar*/
#int_chatbot .chatbot_body::-webkit-scrollbar-button {
    background-image:url('');
    background-repeat:no-repeat;
    width:8px;
    height:0px
}

#int_chatbot .chatbot_body::-webkit-scrollbar-track {
    background-color:#ffffff;
}

#int_chatbot .chatbot_body::-webkit-scrollbar-thumb {
    -webkit-border-radius: 5px;
    border-radius: 5px;
    background-color: rgba(170,170,170,0.5);
}

#int_chatbot .chatbot_body::-webkit-scrollbar-thumb:hover{
    background-color: rgba(170,170,170,0.8)
}

#int_chatbot .chatbot_body::-webkit-resizer{
    background-image:url('');
    background-repeat:no-repeat;
    width:8px;
    height:0px
}

#int_chatbot .chatbot_body::-webkit-scrollbar{
    width: 8px;
}
/**/

@media (max-width:450px) {
    .int_chatbot {
        margin-left: 50%;
        left: -150px !important;
        right: auto !important;
    }
}