.callbackBubbleAnim {
    animation-name: bubbleflash;
    animation-duration: 6s;
    animation-iteration-count: infinite;
    color: $chat-border-primary;
}
.callbackBubble {
	bottom: 35px;
    display: block;
    width: 100px;
    height: 100px;
    border-radius: 50px;
    background-color: $chat-border-primary;
    border: 1px solid $primary-color;
    position: fixed;
    z-index: 999;
    right: 70px;
    cursor: pointer;
}
body:not(.overlay):not(.modal-open) #callbackBubbleQuote.cbshow {
    opacity: 1;
}
#callbackBubbleQuote {
    opacity: 0;
    transition: opacity 500ms;
}
.l-quote {
    position: absolute;
    right: 75px;
    bottom: 45px;
    min-width: 210px;
    padding: 4px 8px 2px;
    margin: 20px auto;
    color: #000;
    background: #fff;
    font-family: Arial !important;
    box-shadow: 1px 1px #444, -3px -3px 22px #444;
}
.trbtn {
    position: absolute;
    right: -16px;
    top: -12px;
    background: transparent;
    border: 0px;
    color: #C9302B;
    font-size: 125%;
}
.l-quote p {
    margin: 0;
    padding: 0;
}
.callbackInnerBubble {
    background-color: $chat-border-primary;
    width: 95%;
    margin: auto;
    margin-top: 3px;
    height: 90%;
    border-radius: 50px;
}
@media screen and (max-width: 991px) {
.callbackBubble {
	bottom: 40px;
    width: 90px;
    height: 90px;
    border-radius: 50px;
    right: 30px;
}
.callbackInnerBubble {
    width: 96%;
    margin-top: 2px;
    height: 96%;
}
}
@media screen and (max-width: 768px) {
.callbackBubble {
	bottom: 30px;
    width: 65px;
    height: 65px;
    border-radius: 50px;
    right: 15px;
}
.callbackInnerBubble {
    width: 96%;
    margin-top: 1px;
    height: 96%;
}
}

@keyframes bubbleflash {
    0% {
        background-color: $chat-border-secondary;
        color: $chat-border-secondary;
    }

    25% {
        background-color: $chat-border-primary;
        color: $chat-border-primary;
    }

    50% {
        background-color: $chat-border-secondary;
        color: $chat-border-secondary;
    }
}
