.stretch {
    @extend .absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

.fill {
    width: 100%;
    height: 100%;
}

.cover {
    @extend .absolute;
    @extend .fill;
    top: 0;
    left: 0;
}

.center {
    @extend .absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.list--unstyled {
    margin-left: 0;
    list-style: none;
}

.flexbox {
	display: table;
	width: 100%;

	> .flexbox__item{
		display: table-cell;
		vertical-align: middle;
	}
}