/*Embed chat widget css*/
.chatwidget {
    position: fixed;
    right: -870px;
    width: 850px;
    top: 180px;
    border: 1px solid #ccc;
    background-color: #ddd;
    z-index: 10000;
}

.chatwidget.active {
    animation: siljish 500ms;
    animation-fill-mode: forwards;
}

.widget-content {
    padding: 0px;
    position: relative;
}

.widget-btn {
    position: absolute;
    right: 93%;
    top: 10%;
    font-size: 20px;
}

.widget-btn svg{
    height: 32px;
    padding: 4px;
}

.widget-btn:hover{
    right: 100%;
}

.chatwidget .sideButton {
    float: left;
    color: #fff !important;
    padding: 6px 13px;
    margin: 0px;
    line-height: 40px;
    animation: main 3s;
    cursor: pointer;
    z-index: 999;
    font-weight: normal !important;
    width: 110px;
    height: auto;
    text-decoration: none !important;
}

.chatwidget .sideButton.left {
    transform-origin: 66% 100%;
    border-radius: 10px 0px 0px 10px;
    background: #0057be;
}

.chatwidget .sideButton:hover,
.chatwidget .sideButton:focus {
    color: #fff !important;
    font-weight: normal !important;
    margin: 0px;
    padding: 6px 13px;
    height: auto;
    text-decoration: none !important;
}
@keyframes siljish {
    from {
        right: -870px;
    }
    to {
        right: 0px;
    }
}
.chatwidget.active {
    animation: siljish 500ms;
    animation-fill-mode: forwards;
}
.chat_iframe, #chat_iframe {
    width: 100%;
}

.user-online-bot ul {
    border-right: none !important;
    width: 100% !important;
}

.user-list {
    display: inline-block;
    clear: left;
    width: 95%;
    margin: 0 !important;
    background: #fff !important;
    border-bottom: #C5C5C5 solid 1px !important;
    padding-bottom: 15px !important;
}

.user-list .online {
    margin-right: 2px;
    font-size: 9px;
    color: #86BB71;
}

.user-list .waiting {
    margin-right: 2px;
    font-size: 11px;
    color: #555555;
}

.user-list .user-thumb {
    border-radius: 100%;
    height: 35px;
    width: 35px;
    margin-right: 10px;
    overflow: hidden;
    float: left;
}

.user-info {
    margin-left: 42px;
}

.user-list .user-info .user-name {
    font-size: 14px;
    color: #333333;
    font-weight: 600;
    display: inline;
    margin-bottom: 3px;
}

.user-list .user-info .user-status {
    font-size: 12px;
    color: #515151;
    font-weight: 400;
    display: inline-block;
}

.user-list a.user-cta {
    float: left;
    font-size: 11px;
    color: #fff;
    float: right;
    border-radius: 30px;
    padding: 0px 10px;
    border: #55A5E7 solid 1px;
    background-color: #55A5E7;
    text-decoration: none;

}

.user-list a.user-cta:hover {
    color: #fff;
    border: #55A5E7 solid 1px;
    background-color: #328CD7;

}

.user-list .user-thumb img {
    width: 100%;
    max-width: 100%;
    height: auto;
    border: 0;
    border-radius: 1000px;
}

@media (max-width: 575.98px) {

    .user-list .user-thumb {
        height: 50px;
    }
}

@media (max-width: 991.98px) {
    .user-list .user-thumb {
        height: 50px;
    }
}

.user-online-bot li.user-list span {
    text-align: left;
    display: unset;
    float: none;
    border: none !important;
}

.user-online-bot li.user-list {
    height: auto;
    line-height: 22px;
}

.user-online-bot li{
    width: 98%;
    border:none;
    padding:1%;
}

.h4_alt{
    text-align: center;
    padding-bottom: 10px;
    font-weight: 400;
}

@media (max-width: 414px) {
    .chatwidget.active .sideButton{
        transform-origin: unset;
        transform: none;
        top: -46px;
        right: -1px;
        width: 375px;
        height: 33px;
        border-radius: 0px;
    }
}

.chatwidget .sideButton{
    display:flex;
}
.chatwidget.active .sideButton{
    display:none;
}

#widget-chat-txt {
    font-family: "Maven Pro","Helvetica Neue",Helvetica,Arial,sans-serif;
    font-size: 18px;
    margin-top: 11px;
    margin-left: 10%;
}