summaryrefslogtreecommitdiff
path: root/assets/css/scss/components/_cookie-consent.scss
blob: 6ce2f5bc6c51250c361950aa66c7bc30232cf4bc (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//
// Cookie Consent //
//
#cookie-consent {
	position: fixed;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 997;
	visibility: visible;
	opacity: 1;
	@include transition(ease-out 0.2s);
	&.consent-hidden {
		visibility: hidden;
		opacity: 0;
	}
}