.ccl-slider-bubble-chat-icon::after {
    content: 'Live Chat';
    font-family: "Roboto",sans-serif;
    line-height: 1.45;
    padding: 0px 6px;
    background: #213f89;
    position: absolute;
    bottom: -21px;
    width: 100%;
    text-align: center;
    left: calc(50% - 40.5px);
    color: white;
    font-weight: 500;
    font-size: 14px;
    border-radius: 20px;
    -webkit-animation: ccl-chat-text 0.25s 1 !important;
    -moz-animation: ccl-chat-text 0.25s 1 !important;
    -o-animation: ccl-chat-text 0.25s 1 !important;
    animation: ccl-chat-text 0.25s 1 !important;
    transform-origin: left;
}

@keyframes ccl-chat-text {
	0% {
                opacity: 0;
		transform: scaleX(0);
	}
	100% {
                opacity: 1;
		transform: none;
	}
}