#intercomBubble {
    width: 225px;
    position: fixed;
    right: 20px;
    background: #004b5a;
    padding: 18px 15px;
    border-radius: 5px;
    bottom: 105px;
    box-shadow: 0 5px 20px rgba(0,0,0,.25);
    opacity: 1;
    transition: opacity 0.4s ease;
    cursor: initial;
}

#intercomBubble .close svg.svg-icon {
    height: 20px;
    width: 20px;
}

#intercomBubble.hide {
    opacity: 0;
    pointer-events: none;
}

#intercomBubble h2.title {
    font-size: 17px;
    margin-bottom: 10px;
    margin-top: 0px;
    padding-right: 24px;
    color: #fff
}

#intercomBubble p {
    color: #fff;
}

#intercomBubble .close {
    width: 20px;
    height: 20px;
    position: absolute;
    right: 15px;
    top: 19px;
    cursor: pointer;
    opacity: 0.7;
    transition: opacity 0.4s ease;
}

#intercomBubble .close:hover {
    opacity: 1;
}

#intercomBubble .close path {
    fill: #f3f3f3;
    transition: fill 0.4s ease;
}

#intercomBubble .close:hover path {
    fill: #fff;
}

#intercomBubble:after {
    content: '';
    position: absolute;
    height: 0;
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
    border-top: 20px solid #004b5a;
    bottom: -12px;
    width: 0;
    right: 10px;
}

.intercom-lightweight-app-launcher-icon svg {
    transform: rotate(0deg);
}

.intercom-lightweight-app-launcher-icon.rotate svg {
    transform: rotate(360deg);
    transition: transform 0.8s ease;
}

.intercom-lightweight-app {
    z-index: 999 !important;
}