:root {
    --theme-color: #3c8dbc;
}
.jm_chat a {
    background-color: transparent;
    color: var(--theme-color);
    text-decoration: none;
}
.jm_chat .msg_receive{
    background-color:rgba(158, 158, 158, 0.63);
    color: #fff;
    margin-left:0;
    padding-bottom: 20px !important;
    border-top-left-radius: 1px;
    border-top-right-radius: 18px;
    border-bottom-right-radius: 18px;
    border-bottom-left-radius: 18px;
    box-shadow: none !important;
}
.jm_chat .msg_sent{
    background-color: #fff !important;
    padding-bottom:20px !important;
    margin-right:5px; 
    border-top-left-radius: 18px;
    border-top-right-radius: 18px;
    border-bottom-right-radius: 1px;
    border-bottom-left-radius: 18px;
}
.jm_chat #btn-chat{
    background-color: #fff;
    border-color: transparent;
    color: #8a8a8a;
    border-radius: 0px;
    border-width: 3px
}
.jm_chat .panel{
    margin-bottom: 0px;
}
.jm_chat .panel-default {
    border: 1px;
    background-color: #e5e5e5
}
.jm_chat .panel-footer{
    padding: 0px 0px 0px !important;
    border-left: 1px solid #ddd;
    border-right: 1px solid #ddd;
}
.jm_chat p{
    font-size:13px;
}
.jm_chat time{
    color:#fff;
    font-size: 11px;

}
.jm_chat .msg_container {
    /* padding:7px 5px 0px 10px; */
    overflow: hidden;
    display: -ms-flexbox;
    display: flex;
    margin-right: 0;
    margin-left: 0;
    margin-bottom: 5px;    
}
.jm_chat .fullscreen img {
    display: block;
    width: 70px;
    margin: 0 auto;
}
.jm_chat img {
    display: block;
    width: 100%;
    margin: 0 auto;
}
.jm_chat .base_sent {
    -ms-flex-pack: end;
        justify-content: flex-end;
    -ms-flex-align: center;
        align-items: center;
}
.jm_chat .base_receive {
    -ms-flex-pack: end;
        justify-content: flex-end;
    -ms-flex-align: center;
        align-items: center;
}
.jm_chat .msg_sent > time{
    float: right;
    color: #7d7a7a;
}
.jm_chat .messages {
    padding: 10px;
    /* border-radius: 2px; */
    /* box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2); */
    max-width:100%;
    margin-bottom: 2px;
}
/* .jm_chat .msg_container_base{
    background: #e5e5e5;
    margin: 0;
    overflow-x:hidden;
    margin-bottom: 2px;
} */
.jm_chat .msg_container_base{
    background: #e5e5e5;
    margin: 5px 0 2px 0px;
    padding: 0 10px 10px;
    overflow-x:hidden;
    position: relative;
    /* margin-bottom: 2px; */
  
  }

.jm_chat .msg_receive time{
    float: left;
}
.jm_chat .previous{
    display:none;
    float: left;
    width:33px;
    /*padding-right: 5px;*/
    /*height:10px;*/
}
.jm_chat .previous span.fa, .jm_chat .chatmenu span.fa, .jm_chat .controlicons span.fa{
    color:#fff;
}
.jm_chat .controlicons{
    float: right;
    display: block;
}

.jm_chat .message_typing{
    /*width: 4.2em;*/
    height: 1.75em;
    padding-top: 1px !important;
}
.jm_chat .base_receive .message_typing{
    float:left;
    background-color: #3c8dbc;
}
.jm_chat .base_receive .icons{
    background: #fff;
}

.jm_chat .agent_message_typing {
display: inline-block;
height: auto;
}
.jm_chat .agent_message_typing .icons{
    width: 5px;
    height: 5px;
    box-shadow:none;
    background-color:darkgray;
}
.jm_chat  .icons {
    width: 8px;
    height: 8px;
    border-radius: 50px;
    display: inline-block;
    animation: fade 1s forwards;
    -webkit-animation: fade 1s forwards;
    -moz-animation: fade 1s forwards;
    -o-animation: fade 1s forwards;
    animation-iteration-count: infinite;
    -webkit-animation-iteration-count: infinite;
    -moz-animation-iteration-count: infinite;  
    -o-animation-iteration-count: infinite;
}
.jm_chat .icon2 
{
    margin-left: 2px;
    margin-right: 2px;
    animation: fade 2s forwards;
    -webkit-animation: fade 2s forwards;
    -moz-animation: fade 2s forwards;
    -o-animation: fade 2s forwards;
    animation-iteration-count: infinite;
    -webkit-animation-iteration-count: infinite;
    -moz-animation-iteration-count: infinite;  
    -o-animation-iteration-count: infinite;
}
.jm_chat .icons3 
{
    animation: fade 3s forwards;
    -webkit-animation: fade 3s forwards;
    -moz-animation: fade 3s forwards;
    -o-animation: fade 3s forwards;
    animation-iteration-count: infinite;
    -webkit-animation-iteration-count: infinite;
    -moz-animation-iteration-count: infinite;  
    -o-animation-iteration-count: infinite;
}

@keyframes fade {
    0%   {opacity:0;}
    50%   {opacity:1;}
    100% {opacity:0;}
}
.jm_chat  .icon-bar {
    width: 100%;
    background-color: white;
    overflow: auto;
    border-top: 1px solid #f5eeee;
}

/* one item */
.jm_chat  .icon-bar a:first-child:nth-last-child(1) {
    width: 100%;
}

/* two items */
.jm_chat  .icon-bar a:first-child:nth-last-child(2),
.jm_chat  .icon-bar a:first-child:nth-last-child(2) ~ a {
    width: 50%;
}

/* three items */
.jm_chat  .icon-bar a:first-child:nth-last-child(3),
.jm_chat  .icon-bar a:first-child:nth-last-child(3) ~ a {
    width: 33.3333%;
}

/* four items */
.jm_chat  .icon-bar a:first-child:nth-last-child(4),
.jm_chat  .icon-bar a:first-child:nth-last-child(4) ~ a {
    width: 25%;
}

/* 5 items */
.jm_chat  .icon-bar a:first-child:nth-last-child(5),
.jm_chat  .icon-bar a:first-child:nth-last-child(5) ~ a {
    width: 20%;
}
/* 6 items */
.jm_chat  .icon-bar a:first-child:nth-last-child(6),
.jm_chat  .icon-bar a:first-child:nth-last-child(6) ~ a {
    width: 16.6%;
}

.jm_chat .icon-bar a {
    float: left;
    text-align: center;
    padding: 3px 0;
    transition: all 0.3s ease;
    color: #8a8a8a;
    font-size: 15px;
}

.jm_chat .icon-bar a:hover {
    background-color: #bcafaf;
    color:#fff;
}

.jm_chat .jm_chat_min_icon {
        display: block; /* Hidden by default */
        position: fixed; /* Fixed/sticky position */
        bottom: 10px; /* Place the button at the bottom of the page */
        right: 55px; /* Place the button 30px from the right */
        z-index: 9999; /* Make sure it does not overlap */
        border: none; /* Remove borders */
        outline: none; /* Remove outline */
        color: #65cd8cb0;
        cursor: pointer; /* Add a mouse pointer on hover */
}
/* .jm_chat .jm_chat_min_icon :hover{
    color: #3c8dbc !important;
    background-color: #3c8dbc !important;
 } */
 .jm_chat .jm_chat_min_icon :hover{
    background-color: red !important;
 }
 

.jm_chat .message{
    word-wrap: break-word;
    /* color: #3c8dbc !important; */
}
.jm_chat .icon_minim{
    padding:2px 10px;
   
}
.jm_chat .controlicons .fa-plus{
    font-size:14px;
}
.jm_chat .controlicons .fa-window-minimize{
     font-size: 11px;
}
.jm_chat #maxim_chat_window{
   font-size : 14px;
}


.jm_chat .msg_receive time{
    color:#fff !important;
}
.jm_chat #chat_window{
    padding: 0px !important;
     z-index: 9999;
     /*box-shadow: 0 1px 2px rgba(0, 0, 0, 0.43);*/
     /*width:350px;*/
}
.jm_chat #chat_window.fullscreen{
   
    width: 100%; 
    height: 100%; 
    position: fixed; 
    top: 0; 
    left: 0; 
 }

.jm_chat .no-padding{
    padding: 0 9px 0 3px;
}
.jm_chat .btn-xs{
    font-size:17px;
}
.jm_chat #button-back{
   /*padding:1px 9px;*/
   color:white;
}
.jm_chat .helperText{
   height: 100%;
max-height: 50px;
overflow-y: scroll !important;
}
.jm_chat .chatmenu .dropdown-menu > li > a{
    padding: 3px 8px;
}
 .jm_chat .panel-heading {
    padding: 13px 0px 10px;
    background: linear-gradient(-90deg, #3c8dbc, #3c8dbc);
    color: #fff;
    border-top-left-radius: 1px;
    border-top-right-radius: 1px;
 }
 .jm_chat .chat_input{
     border-radius: 0px;
     border: none;
    font-size: 14px;
 }
 
/* positioning classes*/
.jm_chat .left-center{
    position: fixed;
    top: 50%;
    left: 0;
    -ms-transform: translate(0%, -50%);
        transform: translate(0%, -50%);
}
.jm_chat .right-center{
   position: fixed;
    top: 50%;
    right: 0;
    -ms-transform: translate(0%, -50%);
        transform: translate(0%, -50%);
}
.jm_chat .right-bottom{
    bottom:0;
    position:fixed;
    right:50px;
}
.jm_chat .right-top{
    top:0;
    position:fixed;
    right:0;
}
.jm_chat .left-top{
    top: 0;
    position: fixed;
    margin-left: 0 !important;
    left: 0;
}
.jm_chat .left-bottom{
    bottom:0;
    position:fixed;
    margin-left: 0 !important;
    left: 0;
}

.jm_chat .panel-heading{
    margin-right: 0;
    margin-left: 0;
    border: none;
}
.jm_chat .chatmenu{
   padding-right: 30px;
}
.jm_chat .chatmenu .dropdown-menu li.fa{
    width:18px;color:#000;
}
.jm_chat .chatdiv{
   padding-left: 10px;
   font-size: 18px;
   }
   .guestName{
       max-width: 90px;
       display: inline-block;
       margin: 0;
   }
   .guestName span{
    max-width: 90px;
    display: inline-block;
    overflow:hidden;
    white-space:nowrap;
    -ms-text-overflow:ellipsis;
    text-overflow:ellipsis;
    }
     /* .guestName span:hover{
        overflow:visible;
        background-color: #771208;
        display: block;
        max-width: fit-content;
        z-index: 9999;
        position: relative;        
        } */
.jm_chat .controliconsdiv{
   float:right;
}
.jm_chat .panel-body{
    margin-top:5px !important;
    display: -ms-flexbox;
    display: flex;
}
/*chat widget changes anil*/
.jm_chat .typing{
    text-align: center;
    vertical-align: middle;
}
.jm_chat .message-typing{
    margin-left: 4px;
    margin-right: 10px;
    border-radius: 10px;
    word-wrap: break-word;
}
.jm_chat .no-conversation{
    -ms-flex-item-align: center;
        -ms-grid-row-align: center;
        align-self: center;

}
.jm_chat .loadmore-wraper {
    color: #4183c4;
    text-decoration: underline;
    cursor: pointer;
}
.jm_chat .loader {
    border: 12px solid #f3f3f3; /* Light grey */
    border-top: 12px solid #3498db; /* Blue */
    border-radius: 42%;
    width: 60px;
    height: 60px;
    animation: spin 2s linear infinite;
    -ms-flex-pack: center;
        justify-content: center;    
    margin-top: 110px;
    margin-bottom: 110px;
}
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
.jm_chat .chatIcon {
    background-color: #65cd8c;
}
/* Buttons override
.jm_chat .btn {
    text-transform: uppercase;
    font-weight: 600;
}
.jm_chat .btn-red {
    background-color: #dd5138;
    color: #fff;
}
.jm_chat .btn-yellow {
    background-color: #fcd93b;
    color: #2a2a2a;
    opacity: 0.8;
}
.jm_chat .btn-yellow:hover {
    opacity: 1;
}
.jm_chat .btn-yellow.disabled:hover,
.jm_chat .btn-yellow[disabled]:hover {
    opacity: 0.65;
} */
.jm_chat .content-ct {
    text-align: center;
}
.jm_chat .chat_icon_container {
    position: relative;
}
.jm_chat .chat_icon_notification_badge{
    transition: 'all 450ms cubic-bezier(0.23, 1, 0.32, 1) 0ms';
    display: inline-block;
    position: fixed;
    min-width: 10px;
    padding: 3px 7px;
    font-size: 12px;
    font-weight: 700;
    line-height: 1;
    color: #fff;
    text-align: center;
    white-space: nowrap;
    vertical-align: baseline;
    background-color: rgba(212, 19, 13, 1);
    border-radius: 10px;
    right: 45px;
    bottom: 40px;
    z-index: 10000;
}
.jm_chat .stick {
    margin-top: 0 !important;
    position: fixed;
    top: 0;
    z-index: 10000;
    border-radius: 0 0 0.5em 0.5em;
}
.jm_chat .stickyheader { 
    position: fixed; 
    top: 0; 
    z-index: 10000;
    width: 100%; 
}
.jm_chat .msg_container_base_pulldown {
    background: #e5e5e5;
    position: absolute;
    width: 100%; 
    bottom: 0px;
    padding: 0 15px 10px 0;
    margin: 0;
}

@media only screen  and (max-width : 767px) {
    .jm_chat .chatmenu{
        float:right;
        padding-right:25px;
    }
    .jm_chat .previous{
        display:block;
        padding-top: 4px;
    }
    .jm_chat .controlicons{
        display: none;
    }
    .jm_chat .right-bottom{
        right: 0px;
    }
}
@media (min-width: 768px) { 
    .jm_chat #chat_window{
        width:350px;
    }
 }

 .non-working-hour{
     text-align: center;
    line-height: normal;
    /* margin-top: 8em; */
    color: #5a5757;
    font-weight: 700;
    -ms-flex-item-align: center;
        -ms-grid-row-align: center;
        align-self: center;
 }
/*# sourceMappingURL=sfclient_1.0.0.css.map*/