#chat-circle {
    position: fixed;
    bottom: 50px;
    right: 50px;
    cursor: pointer;
    width: 80px;
    height: 80px;
    background-image: url('/images/text-helper-icn-3.png');
    background-repeat: no-repeat;
    background-position-y: -1px;
    background-size: 80px;
    z-index: 12;

}

#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-box {
    display:none;
    background: #efefef;
    position:fixed;
    right:75px;
    bottom:50px;
    width:350px;
    max-width: 85vw;
    max-height:100vh;
    border-radius:5px;
    /*   box-shadow: 0px 5px 35px 9px #464a92; */
    box-shadow: 0px 5px 35px 9px #ccc;
    z-index: 99999;
}
.chat-box-toggle {
    float:right;
    margin-right:15px;
    cursor:pointer;
}
.chat-box-header {
    background: rgba(197, 147, 104, 1);
    height:40px;
    border-top-left-radius:5px;
    border-top-right-radius:5px;
    color:white;
    text-align:left;
    padding-top:10px;
    padding-left: 10px;
}
.chat-box-body {
    position: relative;
    height:370px;
    height:auto;
    border:1px solid #ccc;
    overflow: hidden;
}
.chat-box-body:after {
    content: "";
    opacity: 0.1;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    height:100%;
    position: absolute;
    z-index: -1;
}
#chat-input {
   /* background: #f4f7f9;*/
    width:100%;
    position:relative;
    padding-top:10px;
    padding-right:50px;
    padding-bottom:10px;
    padding-left:15px;
    border:none;
    resize:none;
    outline:none;
    /*color:#888;*/
    border-top:none;
    border-bottom-right-radius:5px;
    border-bottom-left-radius:5px;
    overflow:hidden;
}

.chat-input > .action {
    padding: 5px;
    text-align: center;
    border:1px solid #ccc;
    cursor: pointer;
}

.chat-input > form {
    margin-bottom: 0;
}
.chat-submit {
    position:absolute;
    bottom:3px;
    right:10px;
    background: transparent;
    box-shadow:none;
    border:none;
    border-radius:50%;
    /*color: rgba(255,255,255,0.1);*/
    width:35px;
    height:35px;
}
.chat-logs {
    padding:15px;
    height:370px;
    overflow-y:scroll;
}

.chat-logs::-webkit-scrollbar-track
{
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
    background-color: #F5F5F5;
}

.chat-logs::-webkit-scrollbar
{
    width: 5px;
    background-color: #F5F5F5;
}

.chat-logs::-webkit-scrollbar-thumb
{
    background-color: rgba(197, 147, 104, 1);
}

.chat-logs .title {
    margin-top: 5px;
    margin-bottom: 10px;
    font-size: 14px;
    font-weight: bold;
}

.chat-logs .item-link {
    padding: 5px;
    color: rgba(197, 147, 104, 1);
    cursor: pointer;
}

.chat-logs .item-link:hover {
    text-decoration: underline;

}

.chat-logs .item-text {
    padding-top: 6px;
}

.chat-logs .item-ticket .delete{
    color: grey;
    text-decoration: underline;
    cursor: pointer;
    padding-top: 3px;
}

.chat-logs .item-ticket .delete-confirm {
    color: black;
    font-weight: bold;
    text-decoration: underline;
    cursor: pointer;
    padding-top: 3px;
}

.chat-logs .item-ticket .msg {
    color: red;
}

.chat-logs .item-ticket {
    border-bottom: 1px solid #4C4C4C;
    padding-bottom: 10px;
    padding-top: 5px;
}
