// Divider
.cms-divider{
	position: relative;
	&:before{
		content: '';
		height: 6px;
		position: absolute;
		left: 50px;
		right: 50px;
	}
	// position
	&.divider-top:before{
		top: 0;
	}
	&.divider-bottom:before{
		bottom: 0;
	}
	&.divider-8:before{
		height: 8px;
	}
}