#custom-chat-container {
    display: none;
    position: fixed;
    z-index: 9999;
    cursor: pointer;
    transition: transform .5s ease-in-out;
    bottom: 0;
    right: 0;
    margin: 10px 18px 10px 15px;
    .badge {
        height: 4.5rem;
        display: flex;
        align-items: center;
        cursor: pointer;
        -webkit-animation-duration: .5s;
        animation-duration: .5s;
        margin: auto;
    }
    .bade-image{
        cursor: pointer;
    }
    .badge-image-container, .badge-image-container-custom {
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 4px 20px 0 rgba(0, 0, 0, .1);
        border: .25rem solid #fff;
        border-radius: 50%;
        width: 72px;
        height: 72px;
        background-color: #4a4a4a;
        flex-shrink: 0;
    }
    .badge-image-container .badge-image, .badge-image-container-custom .badge-image{
        max-width: 100%;
        max-height: 100%;
    }

    /* Spinner container */
    #chat-widget-container {
        position: absolute;
        top: -60px;
        right: 23px;
        display: flex;
        justify-content: center;
        align-items: center;
        width: 50px;
        height: 50px;
    }
    .spinner {
        border: 4px solid rgba(0, 0, 0, 0.1);
        border-left-color: #4caf50;
        border-radius: 50%;
        width: 40px;
        height: 40px;
        animation: spin 1s linear infinite;
    }
    @keyframes spin {
        0% {
            transform: rotate(0deg);
        }
        100% {
            transform: rotate(360deg);
        }
    }
    .spinner-hidden {
        display: none!important;
    }
    .spinner-visible {
        display: block;
    }

}
.HFCAvaillability {
    max-width: 345px;
    background: #183157;
    border-radius: 8px;

    button.toast-close {
        position: absolute;
        top: 0;
        right: 0;
        transform: translate(-30%, 30%);
        opacity: 0.7;
    }
}
@media (max-width: 1024px) {
    div#custom-chat-container{
        scale: 0.7;
        bottom: 20px !important;
        right: -12px !important;
    }
}
