#slf-widget-live-chat.slf-widget-container {
    position: fixed;
    z-index: 999;
    bottom: 20px;
    right: 20px;
}
.slf-widget-btn-widget-text,
.slf-widget-btn-widget-coverImage,
.slf-widget-btn-widget-circle {
    position: absolute;
    bottom: 0;
    right: 0;
    padding: 8px;
    border-radius: 6px;
    width: 150px;
    font-size: 22px;
    color: white;
    background-color: #ed7549;
    box-shadow: 1px 2px 8px 3px #d2d2d2;
    cursor: pointer;
    z-index: 0;
}
.slf-widget-btn-widget-circle {
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    border-radius: 50%;
}
.slf-widget-btn-widget-circle svg {
    transform: rotate(-45deg);
}
.slf-widget-btn-widget-coverImage {
    width: 150px;
    height: 100px;
    display: grid;
    place-items: center;
    padding: 3px;
}
.slf-widget-btn-widget-coverImage img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 6px;
}

/* container  */
.slf-widget-btn-widget-container {
    /* padding: 10px; */
    width: 0;
    max-width: 0;
    min-width: 0;
    height: 0;
    max-height: 0;
    min-height: 0;
    transition: all 0.3s ease;
    z-index: 9999999;
    border-radius: 6px;
    background-color: #ffffff;
    box-shadow: 3px 5px 8px 4px #dbdbdbdb;
    position: relative;
    top: 8px;
    opacity: 0;
    pointer-events: none;
    display: flex;
}
.slf-widget-btn-widget-container.open-container {
    min-width: 350px;
    /* width: 300px; */
    max-width: 400px;
    height: 70vh;
    max-height: 70vh;
    min-height: 400px;
    opacity: 1;
    pointer-events: all;
}
/* close icon */
.slf-widget-btn-close {
    padding: 8px;
    font-size: 18px;
    font-weight: bold;
    border-radius: 50%;
    float: right;
    line-height: 10px;
    cursor: pointer;
    background-color: red;
    box-shadow: 1px 2px 8px 3px #fad7d7;
    color: #ffffff;
    position: absolute;
    left: -14px;
    top: -14px;
}
