.info-block-container {
	display: flex;
    justify-content: space-between; /* Distribute items evenly */
    align-items: center; /* Vertically center items */
    width: 100%;
    
    margin: 0 auto; /* Optional: Center the container */
	
}
.info-block {
	border-radius: 4px;
	height: 85px; /* Set the height */
	display: flex; /* Enable flexbox for text alignment */
    justify-content: center; /* Horizontally center text */
    align-items: center; /* Vertically center text */
	text-align: center;
	flex-direction: column; /* Arrange divs vertically */
}
.left-block{
    width: calc(15% - 10px); /* Adjust for margins */
    border: 1px solid #ddd;
	background: #fafafa;
}
.right-block {
    width: calc(20% - 10px); /* Adjust for margins */
   
}
.center-block {
    flex-grow: 1; /* Grow to fill remaining space */
    border: 1px solid #ddd;
	background: #fafafa;
   width: calc(15%); /* Adjust for margins */
    
}
.info-block-container > *:not(:first-child) {
    margin-left: 10px; /* Add margin between blocks */
}
.info-block:first-child {
	
}
.info-block:last-child {
	
	
}
.info-block-inner {
	
	text-align: center;
}
.info-block .info-block-title {
	
}
.info-block .info-block-text {
	font-weight: bold;
}