.data-local-plugin {
	background: #333333;
	color: whitesmoke;
	text-align: right;
}

.linha{
	display:flex;
	background: red;
	
}
.col-1, .col-2 ,.col-3{
	flex:0 0 33.33%;
	display: flex;
	align-items:center;
}
.col-1{
	justify-content:flex-start;
}
.col-2{
	justify-content: center;
}
.col-3{
	justify-content: flex-end;
}