
/* Chat button */
#uwf-chat-button {
    background: #118503;
    color : #ffffff;
}



/**
     Changing the button shape to be rectangle with rounded top corners
 */
 
 #uwf-chat-button {
     border-radius: 3px 3px 0 0;
     width: 100%;
     height: 100%;
 }
 
 /**
     Removing the default chat icon
 */




 

 #uwf-chat-button .uwf-channel-chat {
     display: none;
 }


 
 /**
     Use different text for any french variants
 */
 /*
 [lang^='fr'] #uwf-chat-button::before {
     content: "Parlons";
 }
 */
 

 

 /**
     Using a logo image in addition to text
 */

 #uwf-chat-button {
     background: url(https://chatprod.cigna.com/pre-chat/Chat_Bubble_PR.svg) center no-repeat !important;
     background-size: contain !important;
 }
/*
 #uwf-chat-button::before {
     display: none;
 }
 */
 /**
     Added some text to the button
 */
 
 #uwf-chat-button::before {
      content: "Chat with sales";
         font-size: 18px;
        text-align: center;
        line-height: 20px;     
 }
 
 /**
     Different visual appearance for unread messages
 */
 /*
 @keyframes blink {
     from {
         background-color: #00aeef;
     }
 
     to {
         background-color: #f7724f;
     }
 }
 
 #uwf-chat-button #uwf-chat-unread {
     display: none;
 }
 
 #uwf-chat-button.unread {
     animation: 1s ease-out infinite alternate blink;
     transform: scale(1);
 }
 */
 
 /**
     Change appearance of chat button to grayscale when disconnected.
 */
 /*
 #uwf-chat-button.disconnected {
     filter: grayscale(1);
 }
 */