/* Chatbot Icon Style */
#cnc-chatbot-icon {
	z-index: 1000;
    position: fixed;
    bottom: 20px;
    cursor: pointer;
}
.cnc-chatbot-icon-left {
    left: 20px;
}
.cnc-chatbot-icon-right {
    right: 20px;
}
#cnc-chatbot-icon:hover {  
    transform: scale(1.05);
}  
#cnc-chatbot-icon img {
	box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    width: 50px;
    height: 50px;
}

/* Button Spin */
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@-webkit-keyframes spin {
  to {
    -webkit-transform: rotate(360deg);
  }
}

@keyframes spinforward {
    0% {
        -webkit-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}
@keyframes spinreverse {
    0% {
        -webkit-transform: rotate(540deg);
        -ms-transform: rotate(540deg);
        transform: rotate(540deg);
    }
    100% {
        -webkit-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        transform: rotate(0deg);
    }
}
@keyframes messageAnimation {
    0% {
        transform: translateY(80px) scaleX(0.5);
        opacity: 0;
    }
    100% {
        transform: translateY(0) scaleX(1);
        opacity: 1;
    }
}

.animate-chat
{
	animation: messageAnimation 0.5s;
    opacity: 1;
}
.animate-popup
{
	animation: spinforward 1s linear infinite;
	opacity: 1;
}

.animate-popout
{
	animation: spinreverse 1s linear infinite;
	opacity: 1; 
}


/* Chatbot Popup Style */
.cnc-chatbot-popup {
	z-index:1000000;
    display: none;
    position: fixed;
    bottom: 1%;
    right: 1%;
    width: 400px;
    background-color: #ffffff;
    border-radius: 30px 30px 15px 15px;
    box-shadow: rgba(0, 0, 0, 0.05) 0px 0.48px 2.41px -0.38px, rgba(0, 0, 0, 0.17) 0px 4px 20px -0.75px;
    background:#F8F8F8;
}
.cnc-chatbot-popup-left
{
	left: 1%;
}
.cnc-chatbot-popup-right
{
	right: 1%;
}
.cnc-chatbot-popup-widget {
	z-index:1000000;
    display: none;
    position: fixed;
    bottom:80px;right:35px;
    width: 350px;
    background-color: #ffffff;
    border-radius: 30px 30px 15px 15px;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    z-index: 1000;
}
.cnc-chatbot-popup-widget-left {
	left:35px;
}
.cnc-chatbot-popup-widget-right {
	right:35px;
}
.cnc-text-header-mobile
{
  display:none;
}
@media only screen and (max-width: 600px) {
  .cnc-chatbot-popup {
    bottom: 0%;
    right: 0%;
	width:100%;
	height:auto;
  }	
  .cnc-chatbot-popup-widget {
    right: 0%;
	width:100%;
	height:auto;
  }	
  .cnc-chatbot-popup,.cnc-chatbot-popup-header
  {
	border-radius:0px
  }
  cnc-chatbot-popup-header
  {
	  line-height:40px;
  }
  .cnc-text-header
  {
	  display:none;
  }
  .cnc-text-header-mobile
  {
	  display:block;
  }
}



.cnc-chatbot-popup-header {  
    background: linear-gradient(90deg, rgba(84, 207, 96, 1) 0%, rgba(68, 197, 84, 1) 35%, rgba(45, 184, 66, 1) 100%);  
    color: #fff;   
    padding: 15px;  
    /*text-align: center;*/  
    border-radius: 10px 10px 0 0;  
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);  
}  

.cnc-chatbot-popup-header h1 {  
    font-size: 20px;  
    margin: 0;  
    font-weight: bold;  
	width:90%
} 


.cnc-chat-container {    
	display: flex;  
	flex-direction: column;      
}  
.cnc-chat-body {  
    padding: 3px;  
    overflow-y: auto;  
	overflow: hidden;
}  

.cnc-chat-messages {
    padding: 10px;
    height: calc(100vh - 200px);
    overflow-y: auto;
}
@media only screen and (max-width: 600px) {
.cnc-chat-messages {
    height: calc(100vh - 140px);
}
}
.cnc-message {
    display: flex;
    align-items: center;
	word-wrap: break-word;
	font-size: 14px;
	position: relative;
}

.cnc-message.received {
	justify-content: flex-start;
    margin: 0px 0px 0 35px;
}

.cnc-message.received > .received-content {
	box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 6px -1px, rgba(0, 0, 0, 0.06) 0px 2px 4px -1px;
	max-width:90%;
	font-size: 14px;
    padding: 8px;
    color: #3d3d3d !important;
    border-radius: 10px 10px 10px 0px;
    background: linear-gradient(90deg, rgba(1, 122, 213, 1) 0%, rgba(1, 158, 213, 1) 100%);
	white-space: pre-wrap;
	margin-bottom:10px;
}

.cnc-message.received > .received-content > a  {
	color:#3d3d3d !important;	
} 
.cnc-message.sent > .sent-content {
	box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 6px -1px, rgba(0, 0, 0, 0.06) 0px 2px 4px -1px;
	max-width:90%;
	font-size: 14px;
	padding: 8px;
	color:#FFFFFF;
	border-radius: 10px 10px 0px 10px;
	background: #6699ff;
	white-space: pre-wrap;
	margin-bottom:10px;
}

.cnc-message.sent {
    justify-content: flex-end;
	margin: 10px;
}

.scnc-message-icon {
    margin-left: 10px;
}
.rcnc-message-icon {
    position: absolute;
    left: -35px;
    border-radius: 50%;
	top:0px;
}
.rcnc-chat-left-received {
	width: 30px;
    padding: 3px;
    border-radius: 5px;
 
} 
.cnc-chat-initial-form {
 	margin: 10px;
    display: flex;  
    flex-direction: column;  
	padding: 14px;
}  

.cnc-chat-initial-form input {  
    margin: 5px 0;  
    padding: 10px;  
    border: 1px solid #ccc;  
    border-radius: 4px;  
}

.cnc-loading-chat
{
	position: absolute;
    bottom: 0px;
	left:45%;
}

#cnc-start-chat {  
    padding: 10px;  
    margin-left: 5px;  
    background-color: #25D366;  
    color: white;  
    border: none;  
    border-radius: 4px;  
    cursor: pointer;  
}
#cnc-start-chat .cnc-chat-send {  
    margin-left: 5px;  
    background-color: #25D366;  
}  

.cnc-chat-send:hover {  
    background-color: #1ebe53;  
}  

.cnc-chat-suggestions {  
	position: absolute;
    margin: 5px 0;
    bottom: 70px;
}  

.cnc-chat-suggestion-button {  
    display: inline-block;  
    background-color: #FFFFFF;  
    padding: 5px 10px;  
    border-radius: 20px;  
    margin: 2px;  
    cursor: pointer;  
	font-size:14px;
	color:#3d3d3d;
	font-weight:500;
} 
.cnc-chat-suggestion-button:hover {  
    background-color: #f1f1f1;
}

.cnc-chat-top-icon {  
	text-decoration: none !important;
    border-radius: 50%;
    color: #ffffff;
    cursor: pointer;
    text-align: center;
    box-sizing: border-box;
    transition: 0.2s;
}
.cnc-chat-top-icon:hover {  
    transform: scale(1.15);   
}  
.cnc-chat-top-icon-b{  
	text-decoration: none !important;
    border-radius: 50%;
    color: #3d3d3d;
    cursor: pointer;
    text-align: center;
    box-sizing: border-box;
    transition: 0.2s;
}

.cnc-chat-footer {  
    display: flex;
    padding: 3px;
    border: 1px solid #f1f1f1;
    position: relative;
    margin: 0 8px 0 8px;
    border-radius: 20px;
	background:#FFFFFF;
}  

.cnc-chat-footer textarea {  
    flex: 1;
    border:none;
    padding: 0px 8px 0px 8px;
	font-size: 14px;
    line-height: 30px;
	resize:none;
	scroll:none;
	border-radius:20px !important; 
	background:none !important; 
	box-shadow:none !important;
}  

.cnc-chat-footer textarea:focus,
.cnc-chat-footer textarea:focus-visible {
	outline: none; /* Disable default focus outline */
	box-shadow: none; /* Disable any box shadow */
}  
.cnc-chat-footer textarea::-webkit-scrollbar {
   display: none;
}

.cnc-chat-footer .cnc-chat-send {  
   	position: relative;
    border: none;
    cursor: pointer;
	height:30px;
	width:30px;
	border-radius:50%;	
	padding: 0px !important;
}  

.cnc-chat-footer .cnc-chat-send:hover {  
    color: #F1F1F1;  
}

.p-0
{
	padding:0px !important;
}


/* Pop Icons CSS */
.cnc-icon-popup-container {
    position: fixed;
    bottom: 20px;
    cursor: pointer;
	z-index:10000;
}

.cnc-icon-popup-container-left
{
	left: 20px;
}
.cnc-icon-popup-container-right
{
	right: 20px;
}

.cnc-icon-popup-icon{
    width: 50px;
    height: 50px;
    color: white;
    text-align: center;
    line-height: 50px;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    position: relative;
}
.cnc-icon-popup-icon:hover {  
    transform: scale(1.05);  
}  
.cnc-icon-popup-icon img {
    width: 50px;
    height: 50px;
	box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.widget_cnc_chatbot_widget{
	display:table;
}

/* Widget 1 */
#wgs1-cnc-widget {
    height: 200px;
    overflow-y: auto;
	margin: 20px;
}

#wgs1-cnc-widget div {
    margin-bottom: 1px;
}

#wgs1-cnc-widget-widget{
	width:350px;
	margin:0px;
	display:flex;
	flex-direction: column;  
}
#wgs1-cnc-widget-widget .wgs1-cnc-widget-container{
	width:300px;
	border: 1px solid #ddd;
    border-radius: 8px;
    background-color: #ffffff;
    max-width: 600px;
    margin: 3px;
}

.wgs1-cnc-widget-link {
    text-decoration:none !important;
}

.wgs1-cnc-widget-link:hover {
    text-decoration:none !important;
}

#wgs1-cnc-widget .wgs1-cnc-widget-container {
    border: 1px solid #ddd;
    border-radius: 8px;
    background-color: #ffffff;
    max-width: 600px;
    margin: 3px auto;
	
}

.wgs1-cnc-widget-container:hover {
    box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 1px 0px;
}

.wgs1-cnc-widget-item {
    display: flex;
    align-items: center;
}

.wgs1-cnc-widget-icon-div {
    position: relative; /* Ensures the online indicator is positioned relative to the icon */
}

.wgs1-cnc-widget-icon-div::after {
    content: '';
    position: absolute;
    top: 5px; 
    right: 10px;  
    width: 8px;
    height: 8px;
    background-color: #25D366; 
    border: 2px solid #ffffff;  
    border-radius: 50%;
    box-shadow: 0 0 3px rgba(0, 0, 0, 0.2); 
}

.wgs1-cnc-widget-icon {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 50%;
    margin-right: 15px;
	margin-left: 15px;
	box-shadow:none !important;
}

.wgs1-cnc-widget-details {
    flex: 1;
}

 
.wgs1-cnc-widget-name {
	display: block;
    font-size: 18px;
	line-height:18px;
    font-weight: bold;
    margin: 0;
    color: #333;
}

 
.wgs1-cnc-widget-designation {
    font-size: 14px;
	line-height:14px;
    color: #666;
    margin: 5px 0 0;
	color: #25D366;
}

.wgs1-cnc-widget-description {
    font-size: 11px;
	line-height:11px;
    color: #666;
    margin: 5px 0 0 5px;
}

/* Widget 2 */
#wgs2-cnc-widget div {  
    margin-bottom: 8px;  
}  

#wgs2-cnc-widget-widget {  
    width: 300px;  
    margin: 0;  
    display: flex;  
    flex-direction: column;  
}  

#wgs2-cnc-widget-widget .wgs2-cnc-widget-container {  
    border: 1px solid #ddd;  
    border-radius: 10px;  
    background-color: #ffffff;  
    max-width: 600px;  
    margin: 5px auto;  
    transition: box-shadow 0.3s ease-in-out;  
    overflow: hidden;  
}   

.wgs2-cnc-widget-link {  
    text-decoration: none !important;  
}  

.wgs2-cnc-widget-link:hover {  
    text-decoration: none !important;  
}  

#wgs2-cnc-widget .wgs2-cnc-widget-container:hover {  
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);  
}  

.wgs2-cnc-widget-icon-div {
    position: relative; /* Ensures the online indicator is positioned relative to the icon */
}

.wgs2-cnc-widget-icon-div::after {
    content: '';
    position: absolute;
    top: 5px; 
    right: 10px;  
    width: 8px;
    height: 8px;
    background-color: #25D366; 
    border: 2px solid #ffffff;  
    border-radius: 50%;
    box-shadow: 0 0 3px rgba(0, 0, 0, 0.2); 
}

.wgs2-cnc-widget-icon {  
    width: 50px;  
    height: 50px;  
    object-fit: cover;  
    border-radius: 50%;  
    margin: 0 15px;  
    border: 2px solid #ddd;  
    transition: transform 0.3s ease;  
	box-shadow:none !important;
}  

.wgs2-cnc-widget-item {  
    display: flex;  
    align-items: center;  
    padding: 1px;  
    border: 1px solid #eeeeee;  
}  

.wgs2-cnc-widget-item:hover .wgs2-cnc-widget-icon {  
    transform: scale(1.09);  
}  

.wgs2-cnc-widget-details {  
    flex: 1; 
}  

.wgs2-cnc-widget-name {  
	display: block;
    font-size: 18px;  
	line-height:18px;
    font-weight: bold;  
    margin: 0;  
    color: #333;  
}  

.wgs2-cnc-widget-designation {  
    font-size: 14px;  
	line-height:14px;
    color: #25D366;  
    margin: 5px 0 0;  
}  

.wgs2-cnc-widget-description {  
    font-size: 11px;  
	line-height:11px;
    color: #666;  
    margin: 5px 0 0;  
}
 
/* Widget 3 */
.wgs3-cnc-widget-container {  
    margin-bottom: 5px;  
}  

#wgs3-cnc-widget-widget {  
    margin: 0;  
    display: flex;  
    flex-direction: column;  
}  

 
.wgs3-cnc-widget-link {  
    text-decoration: none !important;  
}  

.wgs3-cnc-widget-link:hover {  
    text-decoration: none !important;  
}  
#wgs3-cnc-widget-widget .wgs3-cnc-widget-container {  
    width:300px;
	
} 
#wgs3-cnc-widget .wgs3-cnc-widget-container:hover {  
     
}  

.wgs3-cnc-widget-icon-div {
    position: relative; 
}

.wgs3-cnc-widget-icon-div::after {
    content: '';
    position: absolute;
    top: 5px; 
    right: 10px;  
    width: 8px;
    height: 8px;
    background-color: #25D366; 
    border: 2px solid #ffffff;  
    border-radius: 50%;
    box-shadow: 0 0 3px rgba(0, 0, 0, 0.2); 
}

.wgs3-cnc-widget-icon {  
    width: 50px;  
    height: 50px;  
    object-fit: cover;  
    border-radius: 10%;  
    margin: 0 15px;  
    border: 2px solid #ddd;  
    transition: transform 0.3s ease;  
	border: 3px solid #ffffff;
	box-shadow:none !important;
}  

.wgs3-cnc-widget-item {  
    display: flex;  
    align-items: center;  
    padding: 10px;  
    border: 1px solid #eeeeee;  
	background:#3d3d3d;
}  

.wgs3-cnc-widget-item:hover .wgs3-cnc-widget-icon {  
    transform: scale(1.09);  
}  

.wgs3-cnc-widget-details {  
    flex: 1; 
	height:60px;
	color:#ffffff;
}  

.wgs3-cnc-widget-name { 
	display: block;
    font-size: 16px;  
	line-height:16px;
    font-weight: bold;  
    margin: 0;
    color: #ffffff;  
}  

.wgs3-cnc-widget-designation {  
    font-size: 14px;  
	line-height:14px;
    color: #ffffff;  
    margin: 5px 0 0;  
}  

.wgs3-cnc-widget-description {  
    font-size: 11px;  
	line-height:11px;
    color: #ffffff;  
    margin: 5px 0 0;  
}

 
/* Widget 4 */
#wgs4-cnc-widget {
    height: 200px;
    overflow-y: auto;
	margin: 20px;
	padding: 5px; 
    margin: 0;  
    display: flex;  
    flex-direction: column;
}	
#wgs4-cnc-widget  > .wgs4-cnc-widget-link {
    margin-bottom: 5px;
}
.wgs4-cnc-widget-link {
    text-decoration:none !important;
}

.wgs4-cnc-widget-link:hover {
    text-decoration:none !important;
}

#wgs4-cnc-widget .wgs4-cnc-widget-container {
	background-color: #1BBC9B;
    max-width: 600px;
    margin: 3px auto;
    border-radius: 50px;
    margin: 0px;
	
}

#wgs4-cnc-widget-widget .wgs4-cnc-widget-container {
	background-color: #1BBC9B;
    width: 300px;
    margin: 3px auto;
    border-radius: 50px;
    margin: 0px;
	
}
.wgs4-cnc-widget-container:hover {
    box-shadow: 0 0 10px rgba(0,0,0,0.2);
}
.wgs4-cnc-widget-icon {
	max-width: none !important;
 	width: 60px;
	height: 60px;
	object-fit: cover;
	border-radius: 50%;
	margin-right: 8px;
	border: 3px solid #ffffff;
	margin-left: -10px;
	vertical-align: bottom;
	box-shadow:none !important;
}

 


.wgs4-cnc-widget-item {
	display: flex;
    align-items: center;
    padding: 8px;
    color: #FFFFFF;
}

.wgs4-cnc-widget-icon-div {
    position: relative; 
}

.wgs4-cnc-widget-icon-div::after {
    content: '';
    position: absolute;
    top: 5px; 
    right: 10px;  
    width: 8px;
    height: 8px;
    background-color: #25D366; 
    border: 2px solid #ffffff;  
    border-radius: 50%;
    box-shadow: 0 0 3px rgba(0, 0, 0, 0.2); 
}

 

.wgs4-cnc-widget-details {
    flex: 1;
	height:60px;
	color:#FFFFFF;
}

 
.wgs4-cnc-widget-name {
	display: block;
    font-size: 16px;
	line-height:16px;
    font-weight: bold;
    margin: 0;
    color: #FFFFFF;
}

 
.wgs4-cnc-widget-designation {
    font-size: 14px;
	line-height:14px;
    color: #666;
    margin: 5px 0 0;
	color: #FFFFFF;
}

.wgs4-cnc-widget-description {
    font-size: 11px;  
	line-height:11px;
    color: #666;
    margin: 0px 0 0 5px;
	color: #FFFFFF;
}
 
 
/* Widget 5 */
  

#wgs5-cnc-widget-widget {   
    margin: 0;  
    display: flex;  
    flex-direction: column;  
	max-height:200px;
	
}  
.wgs5-cnc-widget-container {
    padding:10px;
	border-radius: 10px;  
    max-width: 600px;  
    overflow: hidden; 
}

#wgs5-cnc-widget-widget .wgs5-cnc-widget-container {
    width:300px;
}
 
.wgs5-cnc-widget-container:hover {
    box-shadow: 0 0 10px rgba(66, 113, 219, 0.1);
}
.wgs5-cnc-widget-link {  
    text-decoration: none !important;  
}  

.wgs5-cnc-widget-link:hover {  
    text-decoration: none !important;  
}  

 

.wgs5-cnc-widget-icon-div {
    position: relative; 
}

.wgs5-cnc-widget-icon-div::after {
    content: '';
    position: absolute;
    top: 1px; 
    right: 9px; 
    width: 8px;
    height: 8px;
    background-color: #25D366; 
    border: 2px solid #ffffff; 
    border-radius: 50%;
    box-shadow: 0 0 3px rgba(0, 0, 0, 0.2); 
}

.wgs5-cnc-widget-icon {  
	max-width: none !important;
	position: absolute;
    top: -50px;
    width: 60px;  
    height: 60px;  
    object-fit: cover;  
    border-radius: 50%;  
    margin: 0 15px;  
    border: 2px solid #FFFFFF;  
    transition: transform 0.3s ease;  
	box-shadow:none !important;
}  

.wgs5-cnc-widget-item {  
    display: flex;  
    align-items: center;  
 	border-radius:10px;
	background-color: #4271DB;
 
}  

.wgs5-cnc-widget-item:hover .wgs5-cnc-widget-icon {  
      
}  

.wgs5-cnc-widget-details {  
    flex: 1; 
	height:80px;
	margin-left:110px;
}  

.wgs5-cnc-widget-name { 
	display: block;
    font-size: 16px;  
	line-height:14px;
    font-weight: bold;  
    margin: 0;  
    color: #FFFFFF;  
}  

.wgs5-cnc-widget-designation {  
    font-size: 14px;  
	line-height:14px;
    color: #FFFFFF;  
    margin: 5px 0 0;  
}  

.wgs5-cnc-widget-description {  
    font-size: 11px;  
	line-height:11px;
    color: #FFFFFF;  
    margin: 5px 0 0;  
}

 
/* Widget 6 */
#wgs6-cnc-widget {
    height: 200px;
    overflow-y: auto;
	margin: 10px;
}

.wgs6-cnc-widget-container {
    margin-bottom: 8px;
}

#wgs6-cnc-widget-widget{
 
	flex-direction: column;  
}
 

.wgs6-cnc-widget-link {
    text-decoration:none !important;
}

.wgs6-cnc-widget-link:hover {
    text-decoration:none !important;
}

#wgs6-cnc-widget .wgs6-cnc-widget-container {
    border-radius: 8px;
    background-color: #25D366;
    max-width: 600px;
    margin: 8px auto;
	
}

.wgs6-cnc-widget-container:hover {
	box-shadow: 0 0 10px rgba(66, 113, 219, 0.2);
}

#wgs6-cnc-widget-widget .wgs6-cnc-widget-container {
    border-radius: 8px;
    background-color: #25D366;
    max-width: 600px;
	width:300px;
}

.wgs6-cnc-widget-container:hover {
	box-shadow: 0 0 10px rgba(66, 113, 219, 0.2);
}

.wgs6-cnc-widget-icon {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 20%;
    margin-right: 15px;
	box-shadow:none !important;
}


.wgs6-cnc-widget-item {
    display: flex;
    align-items: center;
    padding: 8px;
}

.wgs6-cnc-widget-icon-div {
    position: relative; 
}

.wgs6-cnc-widget-icon-div::after {
    content: '';
    position: absolute;
    top: 5px; 
    right: 10px; 
    width: 8px;
    height: 8px;
    background-color: #25D366; 
    border: 2px solid #ffffff; 
    border-radius: 50%;
    box-shadow: 0 0 3px rgba(0, 0, 0, 0.2); 
}

.wgs6-cnc-widget-icon {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 10px;
    margin-right: 15px;
    margin-left: 15px;
}

.wgs6-cnc-widget-details {
    flex: 1;
	height:60px;
}

 
.wgs6-cnc-widget-name {
	display: block;
    font-size: 16px;
	line-height:16px;
    font-weight: bold;
    margin: 0;
    color: #FFFFFF;
}

 
.wgs6-cnc-widget-designation {
    font-size: 14px;
	line-height:14px;
    color: #666;
    margin: 5px 0 0;
	color: #25D366;
}

.wgs6-cnc-widget-description {
    font-size: 11px;
	line-height:11px;
    color: #FFFFFF;
    margin: 5px 0 0 5px;
}
 

 
.wgs6-cnc-widget-icon {
    border: 3px solid #FFFFFF;
}

.wgs6-cnc-widget-name {
	display: block;
    font-size: 14px;
    color: #FFFFFF;
}

.wgs6-cnc-widget-designation {
    font-size: 14px;
    color: #FFFFFF;
}

.wgs6-cnc-widget-description {
    font-size: 11px;
    color: #FFFFFF;
}