* { margin: 0px; padding: 0px; }
body {
	background: #f0f1f2;
	font:12px "Open Sans", sans-serif;
	overflow: hidden;
}
.navbar {
	border-radius: 0px;
}
#callflex-omne-chatbox{
	width:100%;
	background:transparent;
	overflow:hidden;
	height:100vh;
	position:absolute;
	height: -webkit-fill-available;
}
#callflex-omne-chatbox #chatview{
	width:100%;
	height:100vh;
	position:absolute;
	top:0;
	left:0;
	background:#fff;
	height: -webkit-fill-available;
}

#callflex-omne-chatbox #profile #h-info{
    width: 100%;
    max-width: 300px;
}
#callflex-omne-chatbox #profile .avatar{
	width:68px;
	border:3px solid #fff;
	margin:23px 0 0;
	border-radius:50%;
}
#callflex-omne-chatbox #profile p{
	white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
	font-weight:600;
	font-size:15px;
	margin: 5px 0 -1px;
	opacity:0;
	-webkit-transition: all 200ms cubic-bezier(0.000, 0.995, 0.990, 1.000);
	   -moz-transition: all 200ms cubic-bezier(0.000, 0.995, 0.990, 1.000);
		-ms-transition: all 200ms cubic-bezier(0.000, 0.995, 0.990, 1.000);
		 -o-transition: all 200ms cubic-bezier(0.000, 0.995, 0.990, 1.000);
			transition: all 200ms cubic-bezier(0.000, 0.995, 0.990, 1.000);
}
#callflex-omne-chatbox #profile  p.animate{
	opacity:1;
	-webkit-transition: all 200ms cubic-bezier(0.000, 0.995, 0.990, 1.000);
	   -moz-transition: all 200ms cubic-bezier(0.000, 0.995, 0.990, 1.000);
		-ms-transition: all 200ms cubic-bezier(0.000, 0.995, 0.990, 1.000);
		 -o-transition: all 200ms cubic-bezier(0.000, 0.995, 0.990, 1.000);
			transition: all 200ms cubic-bezier(0.000, 0.995, 0.990, 1.000);
}
#callflex-omne-chatbox #profile  span{
	font-weight:400;
	font-size:11px;
}


#callflex-omne-chatbox #chat-start{
	opacity:0;
	margin-top:30px;
	height:calc( 100vh - 96px );
	overflow-y:auto;
	overflow-x:hidden;
	padding: 20px 0;
	-webkit-transition: all 200ms cubic-bezier(0.000, 0.995, 0.990, 1.000);
	   -moz-transition: all 200ms cubic-bezier(0.000, 0.995, 0.990, 1.000);
		-ms-transition: all 200ms cubic-bezier(0.000, 0.995, 0.990, 1.000);
		 -o-transition: all 200ms cubic-bezier(0.000, 0.995, 0.990, 1.000);
			transition: all 200ms cubic-bezier(0.000, 0.995, 0.990, 1.000);
}
#callflex-omne-chatbox #chat-start.animate{
	opacity:1;
	margin-top:0;
}

#callflex-omne-chatbox #chat-messages{
	opacity:0;
	margin-top:30px;
	height:calc(100vh - 134px);
	overflow-y:auto;
	overflow-x:hidden;
	padding: 20px 0;
	padding-right: 20px;
	-webkit-transition: all 200ms cubic-bezier(0.000, 0.995, 0.990, 1.000);
	   -moz-transition: all 200ms cubic-bezier(0.000, 0.995, 0.990, 1.000);
		-ms-transition: all 200ms cubic-bezier(0.000, 0.995, 0.990, 1.000);
		 -o-transition: all 200ms cubic-bezier(0.000, 0.995, 0.990, 1.000);
			transition: all 200ms cubic-bezier(0.000, 0.995, 0.990, 1.000);
}
#callflex-omne-chatbox #chat-messages .in{
	position: absolute;
	text-align: center;
	top: 50%;
	margin-top: -10vh;
	width: 100%;
	font-size: 16px;
	color: #857b7b;
    font-weight: 500;
}
#callflex-omne-chatbox #chat-messages.animate{
	opacity:1;
	margin-top:0;
}
#callflex-omne-chatbox #chat-messages label{
	color:#aab8c2;
	font-weight:600;
	font-size:12px;
	text-align:center;
	margin:15px 0;
	width:290px;
	display:block;
}
#callflex-omne-chatbox #chat-messages div.message{
	padding:0 0 30px 25px;
	clear:both;
	display: flow-root;
	/*margin-bottom:45px;*/
	animation: slide-up 0.4s ease;
}
@keyframes slide-up {
	0% {
		opacity: 0;
		transform: translateY(20px);
	}
	100% {
		opacity: 1;
		transform: translateY(0);
	}
}
#callflex-omne-chatbox #chat-messages div.message.right{
	  padding: 0 10px 30px 0;
	  margin-left: 50px;
	  display: flow-root;
}
#callflex-omne-chatbox #chat-messages .message img{
	border-radius: 15px;
	width: 100%;
}
#callflex-omne-chatbox #chat-messages div.message.right img{
	float: right;
	margin-left: 0;
}
#callflex-omne-chatbox .message .bubble{
	background:#f0f4f7;
	font-size:15px;
	font-weight:500;
	padding:12px 13px;
	border-radius:10px 10px 10px 0px;
	color:#8495a3;
	position:relative;
	float:left;
	min-width: 70px;
	max-width: 85%;
	word-break: break-word;
}
#callflex-omne-chatbox .message.left .bubble:before{
    display: block;
    transform: rotate( 180deg );
	left: -3px;
	border: solid transparent;
	content: " ";
	height: 0;
	position: absolute;
	pointer-events: none;
	border-bottom-color: #f0f4f7;
	border-width: 9px;
	margin-left: -5px;
	opacity: 1;
	top: 0;
}

#callflex-omne-chatbox .message.right .bubble:before{
    display: block;
    transform: rotate( 180deg );
    right: -9px;
    top: 0px;
    border: solid transparent;
    content: " ";
    height: 0;
    position: absolute;
    pointer-events: none;
    border-color: transparent;
    border-bottom-color: #8e9da2;
    border-width: 9px;
    margin-left: -10px;
    opacity: 1;
}

#callflex-omne-chatbox .message.typing-loader .bubble{
	margin-top: 5px;
	min-width: 50px;
	padding: 0px 13px;
}
#callflex-omne-chatbox .message.typing-loader{
	padding: 0 0 0px 25px!important;
}
#callflex-omne-chatbox #chat-messages div.message.right .bubble{
	float:right;
	border-radius:10px 10px 0px 10px;
	background: #8e9da2;
	color: #fff;
}
#callflex-omne-chatbox .bubble span{
	  color: #aab8c2;
	  font-size: 11px;
	  position: absolute;
	  right: 0;
	  bottom: -22px;
}
#callflex-omne-chatbox #sendmessage{
	height:60px;
	border-top:1px solid #e7ebee;
    position: absolute;
    bottom: 5px;
    right: 5px;
    left: 5px;
	border-radius: 8px;
    width: calc(100% - 10px);
	background:#fff;
	-webkit-box-shadow: 0 -1px 12px 0 rgba(0, 0, 0, 0.2);
	box-shadow: 0 -1px 12px 0 rgba(0, 0, 0, 0.2);

	-webkit-touch-callout: none;  /* iPhone OS, Safari */
	-webkit-user-select: none;    /* Chrome, Safari 3 */
	-khtml-user-select: none;     /* Safari 2 */
	-moz-user-select: none;       /* Firefox */
	-ms-user-select: none;        /* IE10+ */
	user-select: none;
}

#callflex-omne-chatbox #sendmessage textarea{
	background: #fff;
	margin: 0;
	vertical-align: middle;
	/* width: calc( 100% - 108px); */
	width: 100%;
	height: 22px;
	border: none;
	padding: 19px 0px 19px 20px;
	font-size: 14px;
	font-family: "Open Sans", sans-serif;
	font-weight: 400;
	color: #aab8c2;
	resize: none;
	line-height: 20px!important;
}

#callflex-omne-chatbox #sendmessage .navbar-translate{
	width: calc( 100% - 100px );
}

#callflex-omne-chatbox #list-menu{
	margin-right: 10px;
}

#callflex-omne-chatbox .navbar #list-menu .navbar-nav .nav-item .nav-link{
	padding: 0.9375rem 0.4375rem;
	color: #68747ccf;
}
#callflex-omne-chatbox .navbar #list-menu .navbar-nav .nav-item .nav-link:hover{
	padding: 0.9375rem 0.4375rem;
	color: #4a5054cf;
}
#callflex-omne-chatbox #profile.navbar #list-menu .navbar-nav .nav-item .nav-link{
	color: #FFF;
}

::placeholder {
  color: #ccc;
}
:-ms-input-placeholder {
  color: #ccc;
}
::-ms-input-placeholder {
  color: #ccc;
}



#callflex-omne-chatbox #sendmessage textarea:focus::-webkit-input-placeholder {
	color:transparent;
}
#callflex-omne-chatbox #sendmessage textarea:focus{
	 outline: 0;
}

#callflex-omne-chatbox #sendmessage button#button-in{
    width: 96%;
    margin: 7px 0 7px 0;
    left: 4%;
    margin-left: -2%;
}


#callflex-omne-chatbox #sendmessage button#send{
	margin-top: -5px;
	background:#fff url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAQAAABKfvVzAAAABGdBTUEAALGPC/xhBQAAACBjSFJNAAB6JgAAgIQAAPoAAACA6AAAdTAAAOpgAAA6mAAAF3CculE8AAAAAmJLR0QAAKqNIzIAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAAHdElNRQfjCR4UGAxxUF6PAAAAzElEQVQ4y5WUsQrCMBRFT2rBQRwEEcHJTII/4CQU/EHFqZM46tTFSShVRBD8CMHFL1CKbV1akJKkyR3DO4+T5CXgmnjoVu95j9MuXtgDIikAuBPm2+BjDwC82OTr4GkPAKQiysLgaA/QJKgGDIJ6QCMokiuSgXGfN1b9/TQtAYBDuzv6Sk8ihSwkEzp6QaFqee4hMymqBuOyKhVRFno4pfV2V3LdtM/MfKws55f/JV9brLk4NWAYjTqgkNADVuNdAdYPyG+WqMX1E3DOD3/WZiEK8XzIAAAAJXRFWHRkYXRlOmNyZWF0ZQAyMDE5LTA5LTMwVDIwOjI0OjEyKzAwOjAwshcX9wAAACV0RVh0ZGF0ZTptb2RpZnkAMjAxOS0wOS0zMFQyMDoyNDoxMiswMDowMMNKr0sAAAAZdEVYdFNvZnR3YXJlAHd3dy5pbmtzY2FwZS5vcmeb7jwaAAAAAElFTkSuQmCC") no-repeat;
	width:30px;
	height:30px;
	position:absolute;
	right: 45px;
	top: 23px;
	border:none;
}
#callflex-omne-chatbox #sendmessage button#send:hover{
	opacity: 0.8;
}

#callflex-omne-chatbox #sendmessage button#attach:hover{
	opacity: 0.8;
}

#callflex-omne-chatbox #sendmessage button#attach{
	right: 10px;
	margin-top: -5px;
	background:#fff url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAQAAABKfvVzAAAABGdBTUEAALGPC/xhBQAAACBjSFJNAAB6JgAAgIQAAPoAAACA6AAAdTAAAOpgAAA6mAAAF3CculE8AAAAAmJLR0QAAKqNIzIAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAAHdElNRQfjCR4UEzsqGSJLAAABaUlEQVQ4y+2TTShEYRSGn3PnxqzsmSTKysI0RpS1SX5XMwtlOZSUDQtZ2ghZKikbWdlZjZWN8nu/i5LFxEJSbJCNO3GPxcT8XDNLK2fx1Xnf83bO2/mO8EuodT6maaLAuWxEt8QvcBIsz9a+7TBUBOzWJtty34kVFLytMMSzjBMhohO8MOwtV+lw0mjfIn5P/DifO91ygIaa2+8rdLAT2Jr5LoeOI/awP3oDIzmD5tUdABpALkuQC5BI0EOcOr8TNASaK0FyoHYV09XjX/A3AssDqYH8a3nl/M8G5QMkBFwCSWfTEk2R/xahPFsm0CeBeshmWo+1S7IKcJjdA4ko8hgYSc+AxL6d+qSPdR54YF36U5/7tiaA04AZFXNt1Jkqx91po+bqV//uiFHzbobLMM+oM1hASi7OWZJZfLZ1I+yCF5O0jmKxGJurIAB3RhcIFwHvzMdWiysCN22aZFL7aAFuyPhr8btS/guvPYDKoA9/CgAAACV0RVh0ZGF0ZTpjcmVhdGUAMjAxOS0wOS0zMFQyMDoxOTo1OSswMDowMFhGoEYAAAAldEVYdGRhdGU6bW9kaWZ5ADIwMTktMDktMzBUMjA6MTk6NTkrMDA6MDApGxj6AAAAGXRFWHRTb2Z0d2FyZQB3d3cuaW5rc2NhcGUub3Jnm+48GgAAAABJRU5ErkJggg==")no-repeat;
}
/*
#callflex-omne-chatbox #sendmessage button:hover{
	cursor:pointer;
	background-position: 0 0 ;
}
#callflex-omne-chatbox #sendmessage button:focus{
	 outline: 0;
}
*/

/*
#callflex-omne-chatbox #close-chat{
	position: absolute;
	top: 7px;
	opacity: 0.8;
	right: 50px;
	width: auto;
	height: 30px;
	cursor: pointer;
}
#callflex-omne-chatbox #close-chat a.button{
	background-color: #f14e4e;
}
#callflex-omne-chatbox #close-chat a.button:hover{
	background-color:#e13535;
}

*/

#list-menu ul li{
    margin-left: 5px;
}

#callflex-omne-chatbox #minimize-chat .material-icons{
	margin-top: -17px;
}
#callflex-omne-chatbox #minimize-chat{
    border: 1px solid #fff!important;
    padding: 8px 5px 8px 8px!important;
    border-radius: 50%!important;
}

#callflex-omne-chatbox #minimize-chat:hover{
    border: 1px solid #fff!important;
	background-color: #fff;
	color: #909090!important;
}

#callflex-omne-chatbox #close-chat{
    border: 1px solid #fff!important;
    padding: 8px 5px 8px 8px!important;
    border-radius: 50%!important;
}

#callflex-omne-chatbox #close-chat:hover{
    border: 1px solid #fff!important;
	background-color: #fff;
	color: #909090!important;
}

#callflex-omne-chatbox #close{
	position: absolute;
	top: 10px;
	opacity: 0.8;
	right: 20px;
	width: 25px;
	height: 30px;
	cursor: pointer;
}
#callflex-omne-chatbox #close:hover{
	opacity:1;
}
#callflex-omne-chatbox #picture{
	height: 40px;
	width: 40px;
    float: left;
    margin: 5px 10px;
    margin-top: -1px;
}
#callflex-omne-chatbox #picture img{
	height: 100%;
	width: 100%;
	border-radius: 50%;
}
#callflex-omne-chatbox .cx, #callflex-omne-chatbox .cy{
	background:#fff;
	position:absolute;
	width:0px;
	top:15px;
	right:15px;
	height:3px;
	-webkit-transition: all 250ms ease-in-out;
	   -moz-transition: all 250ms ease-in-out;
		-ms-transition: all 250ms ease-in-out;
		 -o-transition: all 250ms ease-in-out;
			transition: all 250ms ease-in-out;
}
#callflex-omne-chatbox .cx.s1, #callflex-omne-chatbox .cy.s1{
	right:0;
	width:20px;
	-webkit-transition: all 100ms ease-out;
	   -moz-transition: all 100ms ease-out;
		-ms-transition: all 100ms ease-out;
		 -o-transition: all 100ms ease-out;
			transition: all 100ms ease-out;
}
#callflex-omne-chatbox .cy.s2{
	-ms-transform: rotate(50deg);
	-webkit-transform: rotate(50deg);
	transform: rotate(50deg);
	-webkit-transition: all 100ms ease-out;
	   -moz-transition: all 100ms ease-out;
		-ms-transition: all 100ms ease-out;
		 -o-transition: all 100ms ease-out;
			transition: all 100ms ease-out;
}
#callflex-omne-chatbox .cy.s3{
	-ms-transform: rotate(45deg);
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
	-webkit-transition: all 100ms ease-out;
	   -moz-transition: all 100ms ease-out;
		-ms-transition: all 100ms ease-out;
		 -o-transition: all 100ms ease-out;
			transition: all 100ms ease-out;
}
#callflex-omne-chatbox .cx.s1{
	right:0;
	width:20px;
	-webkit-transition: all 100ms ease-out;
	   -moz-transition: all 100ms ease-out;
		-ms-transition: all 100ms ease-out;
		 -o-transition: all 100ms ease-out;
			transition: all 100ms ease-out;
}
#callflex-omne-chatbox .cx.s2{
	-ms-transform: rotate(140deg);
	-webkit-transform: rotate(140deg);
	transform: rotate(140deg);
	-webkit-transition: all 100ms ease-out;
	   -moz-transition: all 100ms ease-out;
		-ms-transition: all 100ease-out;
		 -o-transition: all 100ms ease-out;
			transition: all 100ms ease-out;
}
#callflex-omne-chatbox .cx.s3{
	-ms-transform: rotate(135deg);
	-webkit-transform: rotate(135deg);
	transform: rotate(135deg);
	-webkit-transition: all 100ease-out;
	   -moz-transition: all 100ms ease-out;
		-ms-transition: all 100ms ease-out;
		 -o-transition: all 100ms ease-out;
			transition: all 100ms ease-out;
}
#callflex-omne-chatbox #chatview, #callflex-omne-chatbox #sendmessage {
	overflow:hidden;
}

::-webkit-scrollbar-button{ display: none; height: 13px; border-radius: 0px; background-color: #AAA; }
::-webkit-scrollbar-button:hover{ background-color: #AAA; }
::-webkit-scrollbar-thumb{ background-color: #CCC; }
::-webkit-scrollbar-thumb:hover{ background-color: #777777; }
::-webkit-scrollbar-track{ background-color: #efefef; }
::-webkit-scrollbar-track:hover{ background-color: #CCC; }
::-webkit-scrollbar{ width: 10px; }


.button-inline{
	display: flex;
}


a.button{
	padding: 0.6em 1.2em;
	margin: 0.5em 0.5em 0.5em 0em;
	border-radius: 10px;
	box-sizing: border-box;
	text-decoration: none;
	font-family: 'Roboto',sans-serif;
	font-weight: 300;
	color: #FFFFFF;
	background-color: #4eb5f1;
	text-align: center;
	transition: all 0.2s;
	cursor: pointer;
}
a.button:hover{
	background-color:#4095c6;
}

a.button.none{
	cursor: not-allowed!important;
}

@media screen and (max-width: 600px) {

	a.button{
		display: block!important;
	}
	.button-inline{
		display: inline-block;
	}

	#callflex-omne-chatbox{
		width:100%;
	}
}
#callflex-omne-chatbox audio, #callflex-omne-chatbox video{
	max-width: 100%;
}


#callflex-omne-chatbox .lds-loading{
	position: fixed;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: 9999999;
	background: rgb(183 183 183);
}

#callflex-omne-chatbox .lds-ripple {
	display: inline-block;
	position: relative;
	width: 64px;
	height: 64px;
	z-index: 9999;
	left: 50%;
	margin-left: -32px;
	top: 50%;
	margin-top: -32px;
}

#callflex-omne-chatbox .lds-loading.off{
	visibility: hidden;
}
#callflex-omne-chatbox .lds-ripple div {
	position: absolute;
	border: 4px solid #fff;
	opacity: 1;
	border-radius: 50%;
	animation: lds-ripple 1s cubic-bezier(0, 0.2, 0.8, 1) infinite;
}
#callflex-omne-chatbox .lds-ripple div:nth-child(2) {
	animation-delay: -0.5s;
}

@keyframes lds-ripple {
	0% {
		top: 28px;
		left: 28px;
		width: 0;
		height: 0;
		opacity: 1;
	}
	100% {
		top: -1px;
		left: -1px;
		width: 58px;
		height: 58px;
		opacity: 0;
	}
}



#callflex-omne-chatbox .loader {
	border: 16px solid #f3f3f3;
	border-radius: 50%;
	border-top: 16px solid #3498db;
	width: 120px;
	height: 120px;
	-webkit-animation: spin 2s linear infinite; /* Safari */
	animation: spin 2s linear infinite;
}

/* Safari */
@-webkit-keyframes spin {
	0% { -webkit-transform: rotate(0deg); }
	100% { -webkit-transform: rotate(360deg); }
}

@keyframes spin {
	0% { transform: rotate(0deg); }
	100% { transform: rotate(360deg); }
}

#callflex-omne-chatbox .navbar{
	margin-bottom: 0px;
	height: 64px;
}

.pitsys-wc-nps-table.pitsys-wc-nps-table-mode-1{
	width: 100%;
}
.pitsys-wc-nps-table.pitsys-wc-nps-table-mode-1 td{
	border: 1px solid #ccc;
	text-align: center;
	padding-bottom: 10px;
	padding-top: 10px;
	width: 10%;
	font-size: 15px;
}
.pitsys-wc-nps-table.pitsys-wc-nps-table-mode-1 td.bad{
	background: #D16052;
	color: #FFF;
}
.pitsys-wc-nps-table.pitsys-wc-nps-table-mode-1 td.bad:hover{
	background: #ce4f3f;
}
.pitsys-wc-nps-table.pitsys-wc-nps-table-mode-1 td.neutral{
	background: #EDC67B;
	color: #FFF;
}
.pitsys-wc-nps-table.pitsys-wc-nps-table-mode-1 td.neutral:hover{
	background: #e5b250;
}
.pitsys-wc-nps-table.pitsys-wc-nps-table-mode-1 td.god{
	background: #22B5AF;
	color: #FFF;
}
.pitsys-wc-nps-table.pitsys-wc-nps-table-mode-1 td.god:hover{
	background: #1d9f99;
}
.pitsys-wc-lds-ring {
	display: inline-block;
	position: relative;
	margin-left: 50px;
	padding-top: 50px;
}
.pitsys-wc-lds-ring div {
	box-sizing: border-box;
	display: block;
	position: absolute;
	width: 150px;
	height: 150px;
	border: 10px solid #37474f;
	border-radius: 50%;
	animation: pitsys-wc-lds-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
	border-color: #37474f transparent transparent transparent;
}
.pitsys-wc-lds-ring div:nth-child(1) {
	animation-delay: -0.45s;
}
.pitsys-wc-lds-ring div:nth-child(2) {
	animation-delay: -0.3s;
}
.pitsys-wc-lds-ring div:nth-child(3) {
	animation-delay: -0.15s;
}
@keyframes pitsys-wc-lds-ring {
	0% {
		transform: rotate(0deg);
	}
	100% {
		transform: rotate(360deg);
	}
}

#avaliacao-nps{
	margin-top: 15px;
	margin-bottom: 15px;
}

.bubble .title{
	max-width: 240px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}
.bubble .pr{
	max-width: 240px;
	word-wrap: break-word;
	overflow: hidden;
	text-overflow: ellipsis;
}
.bubble .link{
	max-width: 240px;
	word-wrap: break-word;
	overflow: hidden;
	text-overflow: ellipsis;
}
.bubble .inline{
	display: inline-flex;
}
.bubble .inline .doc{
	margin: 6px;
  width: 36px !important;
  height: 36px !important;
}
.bubble .inline .pr_doc{
	margin: auto;
	margin-left: 6px;
	max-width: 180px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.collapse{
	display: block;
}














.btn-channel.cc-botao-canal{
	padding: 0px;
}

.btn-channel.cc-botao-canal .row div{
	padding: 10px;

}

.nav-selector {
	margin-right: -20px;
}

.nav-selector .wellcome {
	padding-left: 22px;
	padding-right: 22px;
	text-align: center;
	margin-bottom: 10px;
}

.nav-selector .wellcome h3, .nav-selector .wellcome .h3 {
    line-height: 0.8em;
}
.nav-selector .wellcome h4, .nav-selector .wellcome .h4 {
    line-height: 0.8em;
}
.nav-selector .wellcome h5, .nav-selector .wellcome .h5 {
    line-height: 0.9em;
}

.nav-selector .wellcome h4,
.nav-selector .wellcome h5,
.nav-selector .wellcome h6,
.nav-selector .wellcome .h4,
.nav-selector .wellcome .h5,
.nav-selector .wellcome .h6 {
    margin-top: 5px;
    margin-bottom: 5px;
}

.nav-selector .nav-pills {
	padding-left: 2em !important;
	padding-right: 2em !important;
	width: 100%;
}


.nav-selector .nav-pills.nav-pills-icons .nav-item .nav-link {
	cursor: pointer;
	text-align: left;
	border: 1.5px dashed #eee;
	color: #5a6061;
}

.nav-selector .nav-pills.nav-pills-icons .nav-item .nav-link .image {
	padding: initial;
	display: inline-block;
	vertical-align: middle;
}

.nav-selector .nav-pills.nav-pills-icons .nav-item .nav-link .text {
	padding: 1.2em 0em 1.2em 1.5em;
	display: inline-block;
	width: calc(100% - 4em);
	vertical-align: middle;
	line-height: 14px;
}

.nav-selector .nav-pills .nav-item .nav-link.active {
	color: #656565;
	background: #efefef;
	box-shadow: none;
}

.nav-selector .nav-pills .nav-item {
	width: 100%;
	margin: 10px 0;
}

.nav-selector .nav-pills .nav-item .nav-link img {
	height: 36px;
	position: relative;
}

.nav-selector .nav-pills:not(.flex-column) .nav-item+.nav-item:not(:first-child) {
	margin-left: 0px;
}


#chat-messages ul{
	list-style:none;
    padding-left: 3em;
	padding-right: 3em;
	margin-right: -20px;
}

#chat-messages ul li{
	list-style:none;
}

#chat-messages ul .btn-channel .cc-icone-canal{
	text-align: center;
}
#chat-messages ul .btn-channel .btn-go{
	text-align: center;
}
#chat-messages ul .btn-channel .cc-nome-canal{
	margin-top: 4px;
	font-size: 14px;
}


#chat-messages .cc-buttom-row button{
	width: 100%;
	border-radius: 10px;
    padding: 1em;}

.message-detail{
	font-size: 11px;
	margin-top: 13px;
	color: #6e7171;
}

#callflex-omne-chatbox #chat-messages div.message.right .bubble .message-detail{
	font-size: 11px;
	margin-top: 13px;
	color: #FFF;
}

#chat-messages.nav-selector-all{
	height: calc( 100% - 70px)!important;
}

#chatview .nav-selector-all-c{
	min-width: 100%!important;
}


form.f-contact{
    padding: 0em 1.5em 0em 1.5em;
    margin-left: 1em;
	margin-bottom: 0px;
}

form.f-contact button{
	width: 100%;
}

form.f-contact label{
	text-align: left!important;
}

.hide{
	display: none!important;
}


.chat-menu{
    list-style: none!important;
    padding-left: 0.2em!important;
    padding-right: 0.2em!important;
    margin-right: 0!important;
}

.chat-menu li a{
    background-color: #fff!important;
    color: #8495a3!important;
    min-width: 160px!important;
	width: 100%;
    white-space: normal;
    text-align: left;
}

.chat-menu.quick-reply{
    width: 300px!important;
}
.chat-menu.quick-reply li{
    display: inline;
}

.chat-menu.quick-reply li a{
    min-width: auto!important;
}


.navbar>.container, .navbar-translate{
	width: 95%;
}

.quick-reply li a{
    width: auto;
}

#queue {
	position: absolute;
    z-index: 2;
    border: 1px solid #eee;
    background-color: #ebebeb;
    padding: 10px;
    border-radius: 0px 0px 10px 10px;
    width: 96%;
    margin-left: 2%;
    text-align: center;
}

#callflex-omne-chatbox #chat-popup{
    position: absolute;
    top: 66px;
    left: 0px;
    margin-left: 5px;
    margin-right: 5px;
    height: calc( 100% - 66px );
    width: calc( 100% - 10px );
    background-color: white;
    border: 1px solid #ccc;
    z-index: 1;
    border-radius: 10px;
}

#callflex-omne-chatbox #chat-popup .navbar.bg-info{
    background: #9c9f9f!important;
    border-radius: 10px 10px 0px 0px;
}

#callflex-omne-chatbox #chat-popup #popup-body{
	padding: 20px;
	padding-bottom: 60px;
	height: 100%;
	width: 100%;
	overflow-y: auto;
	overflow-x: hidden;
}

#callflex-omne-chatbox #chat-popup #popup-title{
    padding: 10px;
}


#callflex-omne-chatbox #chat-popup #close-popup{
    border: 1px solid #fff!important;
    padding: 8px 5px 8px 8px!important;
    border-radius: 50%!important;
	color:#FFF;
}

#callflex-omne-chatbox #chat-popup #close-popup:hover{
    border: 1px solid #fff!important;
	background-color: #fff;
	color: #909090!important;
}

.chat-interactiveList{
    list-style: none!important;
    padding-left: 0.2em!important;
    padding-right: 0.2em!important;
    margin-right: 0!important;
}

.chat-interactiveList li a{
    background-color: #fff!important;
    color: #8495a3!important;
    min-width: 160px!important;
	width: 100%;
    white-space: normal;
    text-align: left;
}

.bubble .btn-interactive{
	background-color: #fff!important;
    color: #8495a3!important;
    min-width: 160px!important;
	width: 100%;
    white-space: normal;
    text-align: left;
}

.alert-close{
    padding: 10px;
    text-align: center;
    width: 100%;
    font-size: 16px;
    color: red;    
}

#video-chat-menu button.active{
	background: #343e41 !important;
}


#callflex-omne-chatbox #video-chat{
	background: #c95454;
    border: 1px solid #fff!important;
    padding: 8px 5px 8px 8px!important;
    border-radius: 50%!important;
}

#callflex-omne-chatbox #video-chat:hover{
    border: 1px solid #fff!important;
	background-color: #fff;
	color: #909090!important;
}

#video-chat-menu{
	text-align: center;
}
#chat-video{
    overflow: hidden;
    position: fixed;
    z-index: 1;
    width: 100%;
    height: 100%;
    background: #222;
}
#chat-video iframe{
	width: 100%;
	height: 620px;
	max-height: 620px;
	overflow: hidden;
	border: none;
}

.blink {
    animation: blink-animation 5s infinite;
}

@keyframes blink-animation {
	0% {
		opacity: 1;
	}
	5% {
		opacity: 0;
	}
	50% {
		opacity: 1;
	}
	100% {
		opacity: 1;
	}
}