.lbn-nav {
	position: fixed;
	left: 0;
	right: 0;
	bottom: 0;
	display: none;
	align-items: stretch;
	justify-content: space-around;
	height: var(--lbn-bar-height, 60px);
	background: var(--lbn-bg, #ffffff);
	border-top: 1px solid var(--lbn-border, #e7ded0);
	box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.06);
	z-index: var(--lbn-z, 9999);
	box-sizing: border-box;
	padding: 0 4px;
}

@media (max-width: 782px) {
	.lbn-nav {
		display: flex;
	}
}

.lbn-nav.lbn-show-desktop {
	display: flex;
}

.lbn-item {
	flex: 1 1 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 2px;
	text-decoration: none;
	color: var(--lbn-icon, #8a7a5c);
	min-width: 0;
	padding: 4px 2px;
}

.lbn-item:hover,
.lbn-item:focus {
	color: var(--lbn-icon-active, #b5651d);
}

.lbn-item.lbn-active {
	color: var(--lbn-icon-active, #b5651d);
}

.lbn-icon {
	width: var(--lbn-icon-size, 24px);
	height: var(--lbn-icon-size, 24px);
	display: flex;
	align-items: center;
	justify-content: center;
	color: inherit;
}

.lbn-icon svg {
	width: 100%;
	height: 100%;
	display: block;
}

.lbn-label {
	font-size: var(--lbn-font-size, 11px);
	line-height: 1.1;
	color: var(--lbn-label, #8a7a5c);
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	max-width: 100%;
}

.lbn-item.lbn-active .lbn-label,
.lbn-item:hover .lbn-label,
.lbn-item:focus .lbn-label {
	color: var(--lbn-label-active, #b5651d);
}

body.lbn-has-nav-padding {
	padding-bottom: var(--lbn-bar-height, 60px);
}
