.pendencias-container{
	width: calc(100% - 3px);
	height: 28px;
	border-radius: 4px;
    display:flex;
    align-items:center;
    gap:3px;
	overflow: hidden;
}
.pendencia-item{
	height: 24px;
	background: salmon;
	border: 1px solid red;
	border-radius: 4px;
	padding-left: 3px;
	padding-right: 3px;
    display:flex;
    align-items: center;
    gap:3px;
}
.pendencia-item span{
	color: white;
	font-size: 14px;
	white-space: nowrap;
	cursor: default;
}
.pendencia-item i{
	color: white;
	font-size: 12px;
	text-align: center;
	height: auto;
    width: 16px;
	padding-top: 2px;
}