HEX
Server: Microsoft-IIS/8.5
System: Windows NT YDAWBH120 6.3 build 9600 (Windows Server 2012 R2 Standard Edition) AMD64
User: tentjecom_web (0)
PHP: 7.4.14
Disabled: NONE
Upload Files
File: D:/HostingSpaces/bomacon/bomacon.nl/resources/sass/site/6-Organisms/_organisms.subfooter.scss
// Component settings: Sub Footer
// ------------------------------------------

$o-subfooter: (
	'color':  				palette(text-on-primary, 300),
	'color-hover':  		palette(text-on-primary, 100),
	'bgcolor':  			palette(primary, 700),
	'spacing-horizontal':	space(4),
);

// ------------------------------------------


.o-subfooter {
	@include z(z-subfooter);
	color: map-get($o-subfooter, 'color');
	background-color: map-get($o-subfooter, 'bgcolor');
	padding-bottom: $site-cookieBar-height;
	transition: padding 0.6s;

	.is-cookies-accepted & {
		padding-bottom: 0;
	}
}

.o-subfooter__main {
	@include contain;
	@include font(s);
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
	align-items: center;
	padding-top: space(1);
	padding-bottom: space(1);
}

.o-subfooter__copyright {
	display: flex;
	flex-wrap: wrap;
  	margin-top: space(1);
  	margin-bottom: space(1);
	margin-right: map-get($o-subfooter, 'spacing-horizontal');
}

.o-subfooter__nav {
	margin-right: auto;
	margin-top: space(1);
	margin-bottom: space(1);
}

.o-subfooter__list {
	display: flex;
	flex-wrap: wrap;
	list-style-type: none;
	margin: 0;
}

.o-subfooter__item {
	margin-right: map-get($o-subfooter, 'spacing-horizontal');
	white-space: nowrap;
}

.o-subfooter__link {
	color: palette(text-on-primary, 300);
	text-decoration: none;
	transition: color 200ms;

	&:hover {
		color: map-get($o-subfooter, 'color-hover');
	}

	&:focus {
		outline-color: palette(feedback, action);
	}
}

.o-subfooter__trademark {
	margin-top: space(1);
	margin-bottom: space(1);
}