.aksc-simple-chat {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
}
.aksc-simple-chat * {text-decoration: none;}
.aksc-simple-chat .aksc-btn-whatsapp {
    border: none;
    border-radius: 30px;
    padding: 10px 15px;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    box-shadow: 0 0 20px rgb(0 0 0 / 15%);
    display: flex;
    align-items: center;
    gap: 5px;
    line-height: 1;
}
.aksc-simple-chat .aksc-btn-whatsapp img {
    display: inline-block;
    height: 24px;
    width: 24px;
}
.aksc-simple-chat .aksc-btn-whatsapp:hover {
    transform: scale(1.05);
}
.aksc-simple-chat ul.aksc-agents-list {
    width: 300px;
    max-height: 300px;
    overflow: auto;
    padding: 10px;
    border-radius: 5px;
    box-shadow: 0 8px 20px rgb(0 0 0 / 20%);
    position: absolute;
    bottom: -200px;
    right: 0;
    background-color: #fff;
    transition: all 0.3s ease-in-out;
    opacity: 0;
    visibility: hidden;
    margin: 0;
}
.aksc-simple-chat.active-chat ul.aksc-agents-list {
    bottom: 50px;
    opacity: 1;
    visibility: visible;
}
.aksc-simple-chat ul.aksc-agents-list li.aksc-chat-head {
    margin: -10px -10px 10px;
    padding: 10px;
    border: none;    
    position: sticky;
    top: -10px;
}
.aksc-simple-chat ul.aksc-agents-list li.aksc-chat-head h3 {
    font-size: 16px;
    margin: 0;
    padding: 0 0 5px 30px;
    position: relative;
    line-height: normal;
}

.aksc-simple-chat ul.aksc-agents-list li.aksc-chat-head h3 img {
    display: block;
    height: 24px;
    width: 24px;
    position: absolute;
    left: 0px;
}
.aksc-simple-chat ul.aksc-agents-list li.aksc-chat-head p {
    margin: 0;
    padding: 0;
    line-height: 20px;
    font-size: 13px;
}
.aksc-simple-chat ul.aksc-agents-list li {
    border-bottom: 1px solid #f1f1f1;
    list-style: none;
    border-radius: 5px;
}
.aksc-simple-chat ul.aksc-agents-list li:not(.aksc-chat-head) a {
    display: flex;
    gap: 10px;
    color: #545454;
    text-decoration: none;
    padding: 8px 10px;
    transition: all 0.3s ease-in-out;
    border-radius: 5px;
    align-items: center;
    font-size: 16px;
    font-weight: normal;
}
.aksc-simple-chat ul.aksc-agents-list li:not(.aksc-chat-head) a:hover {
    background-color: #f9f9f9;
}
.aksc-simple-chat ul.aksc-agents-list img.aksc-chat-avatar {
    border-radius: 50%;
    height: 40px;
    width: 40px;
    object-fit: cover;
}
@media (max-width: 640px) {
.aksc-simple-chat .aksc-btn-whatsapp span {
    display: none;
}
.aksc-simple-chat .aksc-btn-whatsapp {
    padding: 10px;
}
.aksc-simple-chat .aksc-btn-whatsapp svg {
    width: 30px;
    height: 30px;
}
}