.bottom-menu-block {
	display: flex;
	align-items: stretch;
	justify-content: center;
	height: 56px;
}

.bottom-menu-block .bottom-menu-item {
	width: 20%;
	border-right: 1px solid var(--color-border);
	/* border-left: 1px solid var(--color-border); */
	height: 100%;
	display: flex;
	align-items: end;
	justify-content: center;
	padding-bottom: var(--padding-xxxxs);
}

.bottom-menu-block .bottom-menu-item:first-of-type {
	/* border-left-width: 2px; */
	border-left: 1px solid var(--color-border);
}
.bottom-menu-block .bottom-menu-item:last-of-type {
	/* border-right-width: 2px; */
}

.bottom-menu-block .bottom-menu-item .icon-item {
	gap: var(--padding-xxxs);
}
.bottom-menu-block .bottom-menu-item .icon-item .icon {
	width: var(--icon-size-sm);
	height: var(--icon-size-sm);
}
.bottom-menu-block .bottom-menu-item .icon-item .caption {
	font-size: 10px;
	text-transform: uppercase;
}

@media screen and (min-width: 576px) {
	
	.bottom-menu-block .bottom-menu-item {
		max-width: 75px;
	}
}