.footer {
	background-color: #fff;
	position: absolute;
	left: $sidebar-width;
	right: 0;
	bottom: 0;
	z-index: 20;
	height: $footer-height;
	display: flex;
	justify-content: space-between;
	align-items: center;
	border-top: 1px solid #cfd8dc;
	display: -webkit-box;
	display: -ms-flexbox;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	-webkit-box-align: center;
	-ms-flex-align: center;

	.footer-fixed & {
		position: fixed;
	}


	.footer-block {
		vertical-align: middle;
		margin-left: 20px;
		margin-right: 20px;
	}

	.footer-github-btn {
		vertical-align: middle;
	}

	@include media-down(md) {
		left: 0;
	}

	.author > ul {
		list-style: none;
		margin: 0;
		padding: 0;

		li {
			display: inline-block;

			&:after {
				content: "|";
			}

			&:last-child:after {
				content: "";
			}


			@include media-down(md) {
				display: block;
				text-align: right;

				&:after {
					content: "";
				}
			}
		}

		@include media-down(md) {
			display: block;
		}

		@include media-down(sm) {
			display: none;
		}
	}

}


.footer.horizontal {
	left: 0px;
}