/*
//////////////////////////////////////////////////////////////////////////////////
// 																				//
// COPYRIGHT:  NICK VAN KOLLENBURG							 					//
// nickvankollenburg@gmail.com													//
// 																				//
//////////////////////////////////////////////////////////////////////////////////
*/

/** Font imports */
@font-face {
  font-family: Arista;
  src: url(../fonts/arista.ttf);
}
@font-face {
  font-family: Vagrounded;
  src: url(../fonts/vagrounded.ttf);
}


/* Fonts
-------------------------------------------------------------- */
body {
	font-family: var(--font-app-family);
	font-size: var(--font-app-size);
	font-weight: var(--font-app-weight);
	line-height: var(--font-app-line-height);
	letter-spacing: var(--font-app-letter-spacing);
	
	color: rgb(var(--color-text));
	overflow-x: hidden;
}

h1, h2 {
	font-family: 'Roboto Condensed';
	color: rgb(var(--color-text));
	text-transform: uppercase;
	font-weight: 700;
}
h1 {
	font-size: var(--font-size-h1);
	line-height: var(--font-line-height-h1);
}
h2 {
	font-size: var(--font-size-h2);
	line-height: var(--font-line-height-h2);
}
.h1, .h2 {
	font-family: 'Roboto Condensed';
	color: rgb(var(--color-text));
	text-transform: uppercase;
}
.h1 {
	font-size: var(--font-size-h1);
	line-height: var(--font-line-height-h1);
}
.h2 {
	font-size: var(--font-size-h2);
	line-height: var(--font-line-height-h2);
}

.font-roboto, .ql-font-roboto {
	font-family: 'Roboto';
}
.font-roboto-condensed, .ql-font-roboto-condensed {
	font-family: 'Roboto Condensed';
}
.font-inter, .ql-font-inter {
	font-family: 'Inter', sans-serif;
}
.font-arial, .ql-font-arial {
	font-family: 'Arial', sans-serif;
}
.font-verdana, .ql-font-verdana {
	font-family: 'Verdana', sans-serif;
}
.font-times, .ql-font-times {
	font-family: 'Times New Roman', serif;
}
.font-inter {
	font-family: 'Inter', sans-serif;
}
.font-arista {
	font-family: 'Arista';
	letter-spacing: 0.05em;
}
.font-vagrounded {
	font-family: 'Vagrounded';
}

.small {
	font-size: 12px;
}
.bold {
	font-weight: var(--font-weight-bold);
}
.normal {
	font-weight: var(--font-weight-normal);
}



/* Colors
-------------------------------------------------------------- */
/**
Black:
#595959

Red:
#EC1A23
*/
.color-primary {
	color: rgb(var(--color-primary));
}
.color-secondary {
	color: rgb(var(--color-secondary));
}
.color-tertiary {
	color: rgb(var(--color-tertiary));
}
.color-accent {
	color: rgb(var(--color-accent));
}
.color-warning {
	color: rgb(var(--color-warning));
}
.color-success {
	color: rgb(var(--color-success));
}
.color-white, .ql-color-white {
	color: rgb(var(--color-white));
}


/* App colors
-------------------------------------------------------------- */
.color-app-primary, .ql-color-primary {
	color: rgb(var(--color-app-primary));
}
.color-app-secondary, .ql-color-secondary {
	color: rgb(var(--color-app-secondary));
}
.color-app-tertiary, .ql-color-tertiary {
	color: rgb(var(--color-app-tertiary));
}
.color-app-accent, .ql-color-accent {
	color: rgb(var(--color-app-accent));
}
.color-app-warning, .ql-color-warning {
	color: rgb(var(--color-app-warning));
}
.color-app-success, .ql-color-success {
	color: rgb(var(--color-app-success));
}


/* Icons
-------------------------------------------------------------- */
span.icon {
	cursor:pointer;
	
	display: block;
	position: relative;
	
	width: 20px;
	height: 20px;
	
	background-size: cover;
	
	transition:
		filter 0.2s ease-in-out,
		opacity 0.2s ease-in-out,
		transform 0.2s ease-in-out;
}
span.icon:hover {
	filter: drop-shadow(var(--text-shadow-light));
	opacity: .80;
	transform: scale(1.15);
}
span.icon img {
	max-width: 100%;
	max-height: 100%;
}


/* Graphics
-------------------------------------------------------------- */
div.line {
	background-color: rgb(var(--color-primary));
	
	width: 100%;
	height: var(--line-height);
}


/* Hyperlinks
-------------------------------------------------------------- */
a:not(.button-link) {
	color: rgb(var(--color-text));
	text-decoration: none;
	transition:
		color 0.2s ease-in-out,
		font-weight 0.2s ease-in-out,
		text-decoration 0.2s ease-in-out,
		text-shadow 0.2s ease-in-out;
}
a:not(.button-link):hover {
	color: rgb(var(--color-secondary));
	text-decoration: none;
}


/* Boxes
-------------------------------------------------------------- */
div.box {
	width: calc(100%);
    box-sizing: border-box;
	
	border-radius: var(--border-radius);
	background-color: rgb(var(--color-tertiary));
	background: var(--color-footer-gradient);
	
	color: rgb(var(--color-white));
	font-weight: 500;
	
	font-size: var(--font-size);
	line-height: var(--font-line-height);
	
	display: inline-block;
	max-width: 100%;
	padding: 25px;
}


/* Forms
-------------------------------------------------------------- */
div.form-outline {
}
form.form {

}
ul.form-list {
	font-size: var(--font-size);
	line-height: var(--font-line-height);
	list-style: none;
	
	margin: 0px;
	padding: 0px;
}
ul.form-list li:nth-child(1) {
	padding-top: 0px;
}
ul.form-list li {
	padding-top: 12px;
}
ul.form-list li div.form-label {
}
ul.form-list li div.form-error {
	color: #EC1A23;
	font-weight: bold;
}
ul.form-list li div.form-item {
	margin-top: 5px;
}


/* Errors & messages
-------------------------------------------------------------- */

/* Error style */
div.error-outer {
	background-color: rgb(var(--color-error-background));
	border: var(--error-border);
	
	display: inline-block;
	width: 100%;
	
	padding: 10px;
	margin-bottom: 20px;
}
div.error-outer span {
	font-weight: bold;
	font-size: 20px;
	display: block;
	margin-bottom: 10px;
}
ul.error-list {
	list-style: none;
	padding: 0px;
	margin: 0px;
}
ul.error-list li {
	height: 30px;
}
div.error-prefix {
	float: left;
}
div.error-prefix div {
	background-repeat: no-repeat;
	background-position: 50% 50%;
	
	position: relative;
	top: 9px;
	
	width: 7px;
	height: 7px;
	
	margin: 0px 10px 0px 10px;
}
div.error-line {
	float: left;
}

/* Message style */
div.message-outer {
	background-color: rgb(var(--color-message-background));
	border: var(--message-border);
	
	display: inline-block;
	width: 100%;
	padding: 10px;
	margin-bottom: 20px;
}
div.message-outer span {
	font-weight: bold;
	font-size: 20px;
	
	display: block;
	margin-bottom: 10px;
}
ul.message-list {
	list-style: none;
	padding: 0px;
	margin: 0px;
}
ul.message-list li {
	height: 30px;
}
div.message-prefix {
	float: left;
}
div.message-prefix div {
	background-repeat: no-repeat;
	background-position: 50% 50%;
	
	position: relative;
	top: 9px;
	
	width: 7px;
	height: 7px;
	
	margin: 0px 10px 0px 10px;
}
div.message-line {
	float: left;
}


/* Construction screen
-------------------------------------------------------------- */
div.construction {
	margin:0px auto;
	text-align: center;
	padding-top: 100px;
}
div.construction h1 {
	padding-top: 30px;
	
	font-size: var(--construction-font-size-h1);
	font-family: var(--construction-font-h1);
}
div.construction h2 {
	padding-top: 10px;
	
	font-size: var(--construction-font-size-h2);
	font-family: var(--construction-font-h2);
}
div.construction ul.form {
	list-style: none;
}
div.construction ul.form li {
	padding-top: 10px;
}

/* For devices with a minimum width of 0px (Small) */
@media screen and (min-width:  0px)  {
		
	div.construction-left {
		text-align: left;
		display: inline-block;
		max-width: 400px;
		margin: 0px 10px 0px 10px;
	}

	div.construction-right {
		display: inline-block;
		width: 200px;
		margin: 0px 10px 0px 10px;
	}

	div.construction-right img{
		max-width: 100%;
		position: relative;
		top: 30px;
	}
}

/* For devices with a minimum width of 1024px (Large) */
@media screen and (min-width:  1024px)  {
	div.construction-left {
		text-align: left;
		display: inline-block;
		max-width: 400px;
		margin: 0px 10px 0px 10px;
		position: relative;
		top: -50px;
	}

	div.construction-right {
		display: inline-block;
		width: 400px;
		margin: 0px 10px 0px 100px;
	}

	div.construction-right img{
		max-width: 100%;
		position: relative;
		top: 100px;
	}
}



/* Tracking Cookie Layover
-------------------------------------------------------------- */
div#layover-tracking-cookie {
	position: fixed;
	bottom: 0;
	
	z-index: 999999;
	
	border-top: 1px solid rgb(var(--color-secondary) / 0.2);
	background: var(--color-tracking-cookie-layover-gradient);
	
	backdrop-filter: var(--alpha-background-blur);
	-webkit-backdrop-filter: var(--alpha-background-blur);
	
	padding: 25px;
}
div.tracking-cookie-inline {
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: flex-start;
	
	gap: 7px;
}
div#layover-tracking-cookie p:first-of-type {
	font-weight: var(--font-weight-bold);
}
div#layover-tracking-cookie p:last-of-type {
	
}
div#layover-tracking-cookie div.tracking-cookie-buttons {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	
	margin-top: 10px;
	
	gap: 10px;
}


/* Header
-------------------------------------------------------------- */
@media screen and (min-width:  0px)  {
	:root {
		--inline-width: 1350px;
		--inline-header-width: 1400px;
		
		--header-top-height: 40px;
		--header-top-gap: 20px;
		--header-top-font-size: 13px;
		
		--header-height: 45px;
		
		--nav-display: none;
		--nav-font-size: 15px;
		--mobile-nav-display: block;
		--header-extra-button-display: none;
		
		--logo-width: 100px;
		
	}
}
@media screen and (min-width:  1024px)  {
	:root {
		--header-top-height: 50px;
		--header-top-gap: 40px;
		--header-top-font-size: 14px;
		--header-height: 75px;
		
		--nav-display: flex;
		--mobile-nav-display: none;
		--header-extra-button-display: block;
		
		--logo-width: 175px;
	}
}
header {
    position: sticky;
    top: 0;
    left: 0;
    z-index: 500;

    width: 100%;
    background-color: #fff;

    -webkit-backdrop-filter: blur(3px);
    backdrop-filter: blur(3px);

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    transition:
        background-color 250ms ease,
        top 250ms ease;
}

/** Header Animation */
header.is-condensed {
    background-color: rgb(255 255 255 / 80%);
    top: calc(0px - var(--header-top-height));
}

@media (prefers-reduced-motion: reduce) {
    header {
        transition: none;
    }
}

/** Header Top Display */
div.header-top,
div.header {
    box-sizing: border-box;
    max-width: 100%;
    flex-shrink: 0;
}
div.header-top {
	width: var(--inline-header-width);
	height: var(--header-top-height);
	
	padding: 0px 10px;
	
	border-bottom: 1px solid rgb(210 210 210);
	
	display: flex;
	justify-content: flex-end;
	align-items: center;
	
	gap: var(--header-top-gap);
}
div.header-top .header-language-select,
div.header-top a {
	cursor: pointer;
	
	font-family: 'Roboto';
	font-size: var(--header-top-font-size);
	font-weight: var(--font-weight-bold);
	text-transform: uppercase;
	
	background: rgb(var(--color-white));
	border: 0;
}
div.header-top .header-language-select:hover {
	color: rgb(var(--color-secondary));
}

/** Header Display */
div.header {
	width: var(--inline-header-width);
	height: var(--header-height);
	
	padding: 0px 10px;
	
	display: flex;
	justify-content: space-between;
	align-items: center;
}
div.header-bar {
	display: flex;
	justify-content: flex-start;
	align-items: center;
}
div.header-bar img.logo {
	max-width: var(--logo-width);
}

/** Button in bar */
div.header-extra .button {
	display: var(--header-extra-button-display);
}


/* Navigation
-------------------------------------------------------------- */
nav.navigation {
	display: var(--nav-display);
	flex-direction: row;
	justify-content: flex-start;
	align-items: flex-start;
	
	gap: 20px;
	
	position: relative;
	left: 30px;
}
nav a {
	text-transform: uppercase;
	
	font-weight: var(--font-weight-bold);
	font-size: var(--nav-font-size);
}

/** Mobile Navigation */
button.header-mobile-navigation {
	cursor: pointer;
	
	border: 0;
	
	display: var(--mobile-nav-display);
	
	background-color: #fff;
	background-image: url(../images/icons/navigation.svg);
	background-repeat: no-repeat;
	background-size: contain;
	
	width: 27px;
	height: 27px;
}
button.header-mobile-navigation:hover {
	opacity: 0.5;
}

/** Mobile Navigation Layover */
div.mobile-navigation-layover {
	position: fixed;
	inset: 0;
	z-index: 1000;

	background: rgb(0 0 0 / 0.45);

	opacity: 0;
	visibility: hidden;
	pointer-events: none;

	transition:
		opacity 0.3s ease-in-out,
		visibility 0.3s ease-in-out;
}
div.mobile-navigation-layover img.mobile-logo {
	width: 150px;
	
	margin-top: 20px;
}
div.mobile-navigation-layover a {
	position: relative;
	left: 20px;
}
nav.mobile-navigation-menu {
	width: min(320px, 85vw);
	height: 100%;

	background: white;
	
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: flex-start;
	
	gap: 20px;

	transform: translateX(-100%);
	transition: transform 0.3s ease-in-out;
}
body.mobile-navigation-open div.mobile-navigation-layover {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
}
body.mobile-navigation-open nav.mobile-navigation-menu {
	transform: translateX(0);
}

/** Language Select Layover */
div.language-layover {
	position: fixed;
	inset: 0;
	z-index: 1000;

	background: rgb(0 0 0 / 0.45);

	opacity: 0;
	visibility: hidden;
	pointer-events: none;

	transition:
		opacity 0.3s ease-in-out,
		visibility 0.3s ease-in-out;
}
div.language-layover img.mobile-logo {
	width: 150px;
	margin-top: 20px;
	position: relative;
	left: 20px;
}
nav.language-menu {
	width: min(320px, 85vw);
	height: 100%;

	background: white;
	
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: flex-start;
	
	gap: 20px;

	transform: translateX(-100%);
	transition: transform 0.3s ease-in-out;
}
body.language-open div.language-layover {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
}
body.language-open nav.language-menu {
	transform: translateX(0);
}
nav.language-menu div.language-menu-item {
	position: relative;
	left: 20px;
}
nav.language-menu div.language-menu-item a {
	display: flex;
	justify-content: start;
	align-items: center;
	
	gap: 10px;
	transition: transform 0.2s ease;
}
nav.language-menu div.language-menu-item a:hover {
	transform: scale(1.02);
}
nav.language-menu div.language-menu-item a:hover img {
	opacity: 0.6;
}
nav.language-menu div.language-menu-item a img {
	max-width: 20px;
	transition: opacity 0.2s ease;
}


/* Content
-------------------------------------------------------------- */
@media screen and (min-width:  0px)  {
	:root {
		--header-text-margin-top: 20px;
		--header-inline-padding-top: 60px;
		--header-button-width: 160px;
		--header-button-padding: 15px 0px;
		--header-button-border-padding: 13px 0px;
		--header-button-font-size: 14px;
		--header-image-max-height: 450px;
		--header-logo-header-position: 35.5% 50%;
		--header-logo-header-size: 550%;
	}
	div.content-header-text {
		max-width: 300px;
	}
	div.content-header-inline {
		padding-left: 20px;
		padding-right: 20px;
	}
	div.content-header-inline h1 {
		padding: 0px 20px;
	}
}
@media screen and (min-width:  768px)  {
	:root {
		--header-image-max-width: 370px;
	}
}
@media screen and (min-width:  1024px)  {
	:root {
		--header-text-margin-top: 30px;
		--header-inline-padding-top: 100px;
		--header-button-width: 240px;
		--header-button-padding: 20px 0px;
		--header-button-border-padding: 18px 0px;
		--header-button-font-size: 18px;
		--header-image-max-height: 550px;
		--header-logo-header-position: 50% 50%;
		--header-logo-header-size: 80%;
	}
	div.content-header-text {
		max-width: var(--inline-header-width);
		padding: 0;
	}
}
main {
    top: 0;
    left: 0;
	
    z-index: 450;

    width: 100%;
	max-width: 100%;
    background-color: #fff;
}

/** Lists */
main ol {
	list-style: none;
	padding: 0px;
	margin: 0px;
}
main ol li {
	margin-left: var(--app-list-margin-left);
	line-height: var(--app-list-line-height);
}
main ol li:before {
	content: "";
	
	display: inline-block;
	
	background: rgb(var(--color-secondary));
	border-radius: 50%;
	
	width: 10px;
	height: 10px;
	
	margin-right: 10px;
}

/** Content Header */
div.content-header {
	width: 100%;
	height: 780px;
	
	background-color: rgb(var(--color-secondary));
	background-image: url(../images/build/logo-header.svg);
	background-repeat: no-repeat;
	background-size: var(--header-logo-header-size);
	background-position: var(--header-logo-header-position);
}
div.content-header-noise {
	width: inherit;
	height: inherit;
	
	background: url(../images/build/noise.png);
	
	display: flex;
	justify-content: center;
	align-items: flex-start;
}

div.content-header-inline {
	text-align: center;
	
	width: var(--inline-header-width);
	max-width: 100%;
	padding-top: var(--header-inline-padding-top);
	
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: center;
}

/** Header Content Info */
div.content-header-text {
	margin-top: var(--header-text-margin-top);
	font-size: 23px;
	line-height: 30px;
}
div.content-header-buttons {
	display: flex;
	justify-content: start;
	align-items: start;
	
	gap: 20px;
	margin-top: 40px;
}
div.content-header-buttons .button-link {
	width: var(--header-button-width);
	padding: var(--header-button-padding);
	
	font-size: var(--header-button-font-size);
}
div.content-header-buttons .button-link-border {
	width: var(--header-button-width);
	padding: var(--header-button-border-padding);
	
	font-size: var(--header-button-font-size);
}

/** Header Image */
img.content-header-image {
	z-index: 480;
	
	position: relative;
	top: 35px;
	max-height: var(--header-image-max-height);
	max-width: 100%;
	
	transition: transform 3s ease;
}
img.content-header-image:hover {
	transform: scale(1.1);
}

/** Header Brands */
div.content-brands {
    --brands-duration: 30s;
    --brands-min-width: 1100px;

    width: 100%;
    height: 200px;
    overflow: hidden;

    display: flex;
    align-items: center;

    background-color: rgb(var(--color-tertiary));
	background: var(--color-footer-gradient);
}

.content-brands-track {
    display: flex;
    flex: 0 0 auto;

    width: max(100%, var(--brands-min-width));

    animation: brands-scroll var(--brands-duration) linear infinite;
}

.content-brands-group {
    display: flex;
    align-items: center;

    flex: 0 0 100%;
    min-width: 0;
}

.content-brands-group > a {
    display: flex;
    justify-content: center;
    align-items: center;

    flex: 1 1 0;
    min-width: 0;
    height: 200px;
    padding: 0 25px;
    box-sizing: border-box;
}

div.content-brands img {
    display: block;

    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 120px;

    opacity: 0.3;

    transition:
        filter 1s ease,
        opacity 1s ease;
}

.content-brands-group > a:hover img,
.content-brands-group > a:focus-visible img {
    opacity: 1;
    filter: drop-shadow(var(--text-shadow-light));
}

/* Pauzeer zodat een logo gemakkelijk aangeklikt kan worden. */
.content-brands:hover .content-brands-track,
.content-brands:focus-within .content-brands-track {
    animation-play-state: paused;
}

@keyframes brands-scroll {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-100%);
    }
}

/* Respecteer de voorkeur voor minder beweging. */
@media (prefers-reduced-motion: reduce) {
    .content-brands {
        height: auto;
        min-height: 200px;
    }

    .content-brands-track {
        width: 100%;
        animation: none;
    }

    .content-brands-group {
        flex-wrap: wrap;
        justify-content: center;
    }

    .content-brands-group > a {
        flex: 0 1 220px;
    }

    .content-brands-group[aria-hidden="true"] {
        display: none;
    }
}


/* Content Grid
-------------------------------------------------------------- */
@media screen and (min-width:  0px)  {
	:root {
		--content-general-top: -20px;
	}
}
@media screen and (min-width:  768px)  {
	:root {
		--content-general-top: 30px;
	}
}
main div.content-general {
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: center;

	width: 100%;
	box-sizing: border-box;

	margin-top: var(--content-general-top);
	padding: 0 20px;
}
main div.content-grid {
	width: var(--inline-width);
	max-width: 100%;
	box-sizing: border-box;
}
main div.content-grid .grid {
}
main div.content-grid-column {
}
main div.content-grid-column div.grid-column-title {
	
}
main div.content-grid-column div.grid-column-title h2 {
	
}
main div.content-grid-column div.grid-column-content {
	font-size: var(--font-size);
	line-height: var(--font-line-height);
	margin-top: var(--content-column-margin-top);
}
main div.content-grid-column .button {
	margin-top: var(--content-column-margin-top);
}

/** Content column */
div.content-grid-column {
}
@media screen and (min-width:  0px)  {
	div.content-grid-column img {
		max-width: 100%;
		max-height: 400px;
	}
}
@media screen and (min-width:  768px)  {
	div.content-grid-column img {
		max-width: 80%;
	}
}
div.video-box {
	border-radius: var(--border-radius);
	background-color: rgb(var(--color-secondary));
	
	width: auto;
	max-width: 100%;
	
	display: inline-block;
	margin-top: -10px;
	padding: 15px;
}
div.content-grid-column video {
	max-width: 100%;
	max-height: 250px;
}
div.content-grid-column img.box {
	border: 10px solid rgb(var(--color-secondary));
	border-radius: var(--border-radius);
}

div.content-grid-column .mybms-object {
	width: 50%;
}

/** Content Line */
main div.line {
	height: var(--content-line-height);
}
main div.content-grid div.line {
	height: var(--content-section-line-height);
}
main div.content-grid div.line-object {
	margin-top: 30px;
}


/* Footer
-------------------------------------------------------------- */
footer {
	margin-top: 75px;

	min-height: 400px;
	background-color: rgb(var(--color-tertiary));
	background: var(--color-footer-gradient);
}

footer div.footer-inline {
	display: grid;
	grid-template-columns: 1.5fr auto 1fr;
	grid-template-areas:
		"logo pose navigation";

	align-items: center;
	gap: 40px;

	width: calc(var(--inline-width) - 300px);
	max-width: 100%;
	margin: 0 auto;
}

footer img.footer-logo {
	grid-area: logo;
	position: relative;

	width: min(400px, 100%);
}

footer img.footer-pose {
	grid-area: pose;

	width: 250px;
	position: relative;
	top: -30px;

	align-self: end;
}

nav.navigation-footer {
	grid-area: navigation;

	display: flex;
	flex-direction: column;
	align-items: flex-start;

	gap: 25px;
	
	position: relative;
}


@media screen and (max-width: 1000px) {
	footer {
		min-height: auto;
		padding: 40px 20px;
	}

	footer div.footer-inline {
		grid-template-columns: auto 1fr;
		grid-template-areas:
			"pose logo"
			"navigation navigation";

		align-items: center;
		gap: 25px 20px;

		width: 100%;
	}

	footer img.footer-pose {
		width: 170px;
		align-self: end;
		top: -60px;
	}

	footer img.footer-logo {
		width: min(220px, 100%);
		top: -60px;
	}

	nav.navigation-footer {
		width: 100%;
		margin: 0;

		align-items: center;
		top: -50px;
	}
	div.footer-copy {
		background: rgb(var(--color-tertiary));
		
		display: flex;
		flex-direction: column;
		justify-content: flex-start;
		align-items: center;
		
		padding-top: 10px;
		padding-bottom: 10px;

	}
	div.footer-copy div {
		display: flex;
		flex-direction: column;
		justify-content: flex-start;
		align-items: center;
	}
	div.footer-copy .pbreaker {
		display: none;
	}
}

@media screen and (min-width:  768px)  {
	nav.navigation-footer {
		top: 0px;
	}
	div.footer-copy {
		background: rgb(var(--color-tertiary));
		
		display: flex;
		justify-content: center;
		align-items: center;
		
		padding-top: 10px;
		padding-bottom: 10px;
		
	}
	div.footer-copy div {
		display: flex;
		justify-content: start;
		align-items: center;
	}
	div.footer-copy .pbreaker {
		display: inline-block;
	}

}
nav.navigation-footer a {
	color: rgb(var(--color-white));
	font-size: 16px;
}

/** Footer Copy */
div.footer-copy p {
	color: rgb(var(--color-white) / 0.6);
	font-size: 15px;
}
div.footer-copy a {
	color: rgb(var(--color-white) / 0.6);
	font-size: 15px;
}


/* Login Page
-------------------------------------------------------------- */
.login-box {
	margin-top: 50px;
}
.login-screen input {
	margin-top: 7px;
}
.login-screen p {
	font-weight: var(--font-weight-bold);
}
div.login-buttons {
	margin-top: 20px;
	
	display: flex;
	justify-content: start;
	align-items: center;
	
	gap: 15px;
}
div.login-buttons .button-link {
	margin-top: 6px;
}


/* Register Form
-------------------------------------------------------------- */
@media screen and (min-width:  0px)  {		
	div.register-promo {
		margin-top: 60px;
		display: flex;
		flex-direction: row-reverse;
		justify-content: space-between;
		align-items: flex-start;
		display: none;
	}
	div.register-promo .logo {
		max-width: 150px;
		position: relative;
		top: 70px;
		right: 20px;
	}
	div.register-promo .image {
		max-width: 150px;
	}
}
@media screen and (min-width:  768px)  {		
	div.register-promo {
		display: flex;
		flex-direction: column;
		justify-content: flex-start;
		align-items: flex-start;
	}
	div.register-promo .logo {
		max-width: 350px;
		margin-bottom: 50px;
		top: 0px;
		right: 0px;
	}
	div.register-promo .image {
		max-width: 100%;
	}
}
div.register {
	max-width: 100%;
	width: var(--inline-width);
}

div.register-promo .logo {
	margin-bottom: 50px;
}