.rows {
    width: 100%;
    display: flex;
    justify-content: start;
}
.item {
	color: #000;
	display: block;
	align-items: end;
	border: solid 2px #1487c7;
}
section.processes {
	.rows {
		width: 100%;
		display: flex;
		justify-content: start; 
		.item {
			color: #000;
			display: block;
			align-items: end;
			gap: 8px;
			width: 100%;
			margin: 0.5rem;
			min-height: 50px;
			text-align: center;
			background: white;
			padding: 0.5rem;
		} 
	}
}


/*
.process {
	display: flex;
}

.process > div {
	flex-grow: 1;
    flex-basis: 0;
}

.process .item {
	
}

.process .item .label {
	border: 1px solid #000;
}
*/

.item {
    position: relative;
}

.item:after {
    content: '';
    display: block;
    width: 2px;
    height: 18px;
    background: #1e88c5;
    position: absolute;
    bottom: 100%;
    right: 50%;
    margin-top: 0;
}
section.processes .rows:first-child .item:after {
	display:none;
}
section.processes {
    background: #f0f1f1;
    padding: 1rem;
    border-radius: 10px;
}

.item.bold {
    background: #66c1f3!important;
}