/* Contact Bubble */
.contact-bubble {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 97;
}

/* live-chat-btn */
.contact-bubble .live-chat-btn {
    display: flex;
    align-items: center;
    position: relative;
}
.contact-bubble .live-chat-btn img {
    position: absolute;
    left: -18px;
    bottom: -2px;
    width: 46px;
    z-index: 2;
    transition: all .15s ease-in-out;
}
.contact-bubble .live-chat-btn:hover img {
    transform: scale(1.1);
}
.contact-bubble .live-chat-btn .text {
    display: flex;
    white-space: nowrap;
    background-color: var(--semi-dark-2);
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 1px;
    color: #FFFFFF;
    padding: 8px 20px 8px 42px;
    border-radius: 50px;
    box-shadow: 0 10px 15px rgba(0, 0, 0, .1);
}
.img-fluid {
    max-width: 100%;
}
/*------------------------------------------------------*/