.sidebar {
	.list-group-menu > .list-group-item {
		padding: 0;
		*:last-child {
			margin: 0;
		}
		> a {
			display: block;
			padding: $sidebar-spacing-y $sidebar-spacing-x;
			font-weight: $sm-button-font-weight;
			&, &:hover {
				text-decoration: none;
			}
		}
		.badge {
			padding-left: 0;
			padding-right: 0;
		}
		&.active > a {
			font-weight: bold;
		}
	}
	.list-group-menu.list-group-striped > .list-group-item:nth-child(odd) {
		background-color: transparent;
	}
	.sidebar-block {
		&.list-group-fit {
			padding: 0;
			margin: 0;
			.list-group-item {
				border-left: none;
				border-right: none;
				border-radius: 0;
				&:first-of-type {
					border-top: none;
				}
				&:last-of-type {
					border-bottom: none;
				}
			}
		}
		&.list-group-menu {
			padding: 0;
			margin: 0;
			.list-group-item {
				border-left: none;
				border-right: none;
				border-radius: 0;
				&:first-of-type {
					border-top: none;
				}
				&:last-of-type {
					border-bottom: none;
				}
			}
		}
	}
	div.sidebar-block.list-group {
		padding: 0;
		border: none;
		margin-bottom: 0;
		> .list-group-item {
			border-left: none;
			border-right: none;
		}
	}
}