@mixin link-absolute() {
	&::before {
		content: '';
		position: absolute;
		bottom: 0;
		left: 0;
		right: 0;
		top: 0;
		z-index: 1;
		white-space: nowrap;
	}
}

@mixin list-bullet($color: white, $size:4px, $offset: 1rem) {
	$offset: $offset * -1;
	position: relative;
	&::before {
		content: '';
		display: inline-flex;
		width: $size;
		height: $size;
		border-radius: 50%;
		background-color: $color;
		position: absolute;
		left: calc(#{$offset} - #{$size}/2);
		top: calc(50% - #{$size}/2);
	}
}


@mixin blockshadows {
	//box-shadow: 1px 1px 10px $gray;
	box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.16);
}

@mixin title-margins {
	margin-bottom: 3rem;
}

@mixin block-margins {
	margin-bottom: 3rem;
}
