.titulosBarraEntrega {
	color: #2d675f;
}

.iconeCarrinho::before {
	font: var(--fa-font-solid);
    content: "\f07a";
	font-size: 20px;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 35px;
	height: 35px;
	background: #CCCCCC;
	color: #8c8989;
	border-radius: 50%;
	position: absolute;
	top: 60%;
	left: 17.5%;
	transform: translate(-50%, -50%);
}

.iconeCaminhao::before {
	font: var(--fa-font-solid);
    content: "\f48b";
	font-size: 20px;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 35px;
	height: 35px;
	background: #CCCCCC;
	color: #8c8989;
	border-radius: 50%;
	position: absolute;
	top: 60%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.iconePin::before {
	font: var(--fa-font-solid);
    content: "\f606";
	font-size: 20px;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 35px;
	height: 35px;
	background: #CCCCCC;
	color: #8c8989;
	border-radius: 50%;
	position: absolute;
	top: 60%;
	left: 82.5%;
	transform: translate(-50%, -50%);
}

.iconeCarrinho.active::before{
	color: #2d675f;
	background: #8cb63c;
	
}

.iconeCaminhao.active::before{
	color: #2d675f;
	background: #8cb63c;
	
}

.iconePin.active::before{
	color: #2d675f;
	background: #8cb63c;
	
}

@media (max-width: 576px){
	.iconeCarrinho::before {
    	top: 65.8%;
		left: 18.5%;
   	}
	.iconeCaminhao::before {
    	top: 65.8%;
   	}
	.iconePin::before {
    	top: 65.8%;
		left: 82.5%;
   	}
}