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/stafa/werkenbijstafa.nl/resources/sass/site/6-Organisms/_organisms.subfooter.scss
// Component settings: Sub Footer
// ------------------------------------------

$o-subfooter: (
	'color':  				    palette(text-on-primary, 3),
	'color-hover':  		  palette(text-on-primary, 1),
	'bgcolor':  			    #1c2332, //palette(primary, 2),
	'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 flex(wrap flex-start center);
	@include font(s);
	padding-top: space(1);
	padding-bottom: space(1);
}

.o-subfooter__copyright {
	@include flex(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 {
	@include flex(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, 3);
	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);
}