.alignLeftRight {
	display: flex;
    justify-content: space-between;
    align-items: baseline;
    width: 100%;
}

.horizontalList {
	> ul {
		display: inline-flex;
		list-style-type: none;
		margin: 0;
		padding: 0;
		overflow: hidden;

		> li {
			display: flex;
			flex-direction: column;
			justify-content: center;
			margin: 0 .3rem;
		}
	}
}

.alignCenter {
	display: flex;
	flex-direction: column;
	align-items: center;
}

.alignTopBottom {
	.bottom {
		position: absolute;
        bottom: 0;
        width: 100%;
	}
}
