@charset "UTF-8";
/*
Theme Name: -
Theme URI: http://www.grouplino.com
Description: -
Author: grouplino
Version: 1.0
*/

html, body, div, span, applet, object, iframe, menu,
h1, h2, h3, h4, h5, h6, p,
blockquote, pre, a, abbr, acronym, address, big,
cite, code, del, dfn, px, font, img,
ins, kbd, q, s, samp, small, strike, sub, sup, tt, var, dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
center, u, b, i, marquee, p {
	margin:0;
	padding:0;
	border:0;
	
	list-style-type:0;
	-webkit-margin-before:0;
	-webkit-margin-after:0;
	-webkit-margin-start:0;
	-webkit-margin-end:0;
	-webkit-padding-start:0;
	
	line-height:100%;
	color:#fff;
}

:root{
  --sat: env(safe-area-inset-top, 0px);
  --sab: env(safe-area-inset-bottom, 0px);
}

@font-face {
	font-family: 'Advercase-Regular';
	src: url('asset/advercase-regular.woff2') format('woff2'),
		 url('asset/advercase-regular.woff') format('woff');
	font-weight: normal;
	font-style: normal;
}

html, body {
	height:100%;
	background-color:#435649;
	
	font-family: "Inter", sans-serif;
	color:#fff;
	font-size:15pt;
	
	font-optical-sizing: auto;
	font-weight: 200;
	font-style: normal;
}

section, header {
	display: flex;
	width : 100%;
}

.body {
	width: 100%;
	max-width: 1000px;
	margin: 0 auto;
	
	color: inherit;
	
	display: flex;
	flex-direction: column;
}

.margin {
	padding : 9% 3%;
	height: inherit;
	color: inherit;
}

#disclaimer .margin {
	height: inherit;
}

.emblem.margin {
	padding : 3%;
}


/* POPUP ----------- */

#popup .body { padding-top : env(safe-area-inset-top); }

#popup {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  
  font-size: 14pt;

  background: #303030;
  padding-top: var(--sat);

  z-index: 9999;

  transform: translate3d(0,0,0);
  transition: transform 0.6s cubic-bezier(.22,.9,.3,1);
  -webkit-tap-highlight-color: transparent;
}

#popup .item {
	font-weight: 300;
}

#popup:hover {
	background: #262626;
	cursor: pointer;
}

#popup.hide-up {
  transform: translate3d(0,-110%,0);
}

#popup .body{
  padding-top: 0;
  width: 100vw;
}

#popup .margin{
  padding: 20px;
}

#popup .icon {
	padding-right: 2%;
}

body.popup header .c .margin {
	padding-top: 25%;
}

/* SPLIT ----------- */


.split {
	position: relative;
	display: flex;
	color: inherit;
	gap: 30px;
	
	margin-bottom: 5%;
}

.split > div {
	flex: 1;
	color: inherit;
	height: auto;
}

.split > .b {
  position: relative;
  z-index: 1;
}

.a.image, .b.image {
	background-image: url("images/praktijkeigenaren.jpg");
	background-size: cover;
	background-position: center center;
	min-height: 60vh;
}

#post .split .a {
	margin-bottom: 5%;
}

#signup .split .c {
	margin-top: 5%;
}


/* FORM ----------- */


.wizard {
  color: inherit;
  position: relative;
}

/* keep logo always visible */
.wizard .logo {
  margin-bottom: 10px;
}

.wizard .wizIntro,
.wizard .wizThanks,
.wizard .wizardForm {
  display: none;
  color: inherit;
}

.wizard.isIntro .wizIntro {
  display: block;
}

.wizard.isStarted .wizardForm {
  display: flex;
  flex-direction: column;
  gap: 16px;

  /* DESKTOP STACK FIX: keep form readable width + centered */
  width: 100%;
  max-width: 720px;
  margin: 0 auto;

  /* prevent content hiding behind sticky mini */
  padding-bottom: 58px; /* approx mini height */
}

.wizard.isThanks .wizThanks {
  display: block;
}

.wizIntro {
  cursor: pointer;
  color: inherit;
}

.wizIntro:focus {
  outline: 2px solid rgba(0,0,0,0.18);
  outline-offset: 6px;
}

.wizStep {
  display: none;
  padding: 8px 0;
}

.wizStep.isActive {
  display: block;
}

.wizard label {
  display: block;
  font-size: 12pt;
  font-weight: 350;
  opacity: 0.85;
  margin-bottom: 8px;
  color: #435649;
}

.wizard input,
.wizard select,
.wizard textarea {
  width: 100%;
  box-sizing: border-box;

  margin-top: 6px;
  padding: 8px 8px;

  border-radius: 10px;
  border: 1px solid rgba(0, 0, 0, 0.18);

  background: white;
  color: #303030 !important;
  font: inherit;
  font-weight: 250;
  font-size: 14pt;

  /* DESKTOP GRID FIX: prevent overflow inside CSS grid */
  min-width: 0;
}

.wizard textarea {
  resize: vertical;
}

.wizard input::placeholder,
.wizard textarea::placeholder {
  color: inherit;
  opacity: 0.55;
}

.wizard .row {
  display: grid;
  gap: 12px;
  margin-bottom: 8px;
}

.wizard .row,
.wizard .row.cols2,
.wizard .row.cols3 {
  grid-template-columns: 1fr !important;
}

/* Collapse 3->2 earlier on mid-sized desktop panels */
@media (max-width: 860px) {
  .wizard .row.cols3 {
	grid-template-columns: repeat(2, minmax(220px, 1fr));
  }
}

@media (max-width: 580px) {
  .wizard .row.cols2,
  .wizard .row.cols3 {
	grid-template-columns: 1fr;
  }
}

.wizInvalid {
  outline: 2px solid rgba(255, 0, 0, 0.25);
}

.wizActions {
  display: flex;
  gap: 10px;
  align-items: center;
  padding-top: 6px;
}

.wizSpacer {
  flex: 1;
}

.wizBtn {
  border: 0;
  border-radius: 999px;
  padding: 10px 14px;

  font-weight: 800;
  cursor: pointer;

  background: rgba(0, 0, 0, 0.75);
  color: white !important;
}

.wizBtn.ghost {
  background: rgba(0, 0, 0, 0.12);
  color: white;
}

.wizBtn[disabled] {
  opacity: 0.45;
  cursor: not-allowed;
}

.wizMini {
  position: sticky;
  bottom: 0;
  z-index: 10;

  margin-top: 10px;
  padding: 10px 0 6px 0;

  /* keep your blur, but don't force a white bar */
  backdrop-filter: blur(6px);
}

/* --- MINI BAR DESKTOP FIX: don't use float layout inside the wizard mini --- */
#register .wizard .mini.wizMini {
  display: flex;
  align-items: center;
  gap: 10px;
}

#register .wizard .mini.wizMini .right {
  float: none !important;
  margin-left: auto;
  clear: none !important;
}

/* you had this; keep */
.mini span {
  display: inline-block;
}

/* Inputs readable (your global reset + inherited color was causing white) */
#register .wizard input,
#register .wizard select,
#register .wizard textarea {
  color: #435649 !important;
  caret-color: #435649;
}

#register .wizard input::placeholder,
#register .wizard textarea::placeholder {
  color: #435649 !important;
  opacity: 0.55;
}
/* BLOCKS ----------- */


body:not(.popup) header{
  padding-top: var(--sat);
}

header .logo {
	width : 60%;
	height: auto;
	max-width: 230px;
	margin: 8% 0;
}

#register {
	min-height: 240px;
	transition: height .6s cubic-bezier(.22,.9,.3,1);
	overflow: hidden;
}

#register.open {
	height: 60dvh;
}

#contact .split {
	margin-bottom: 0;
}

#register .logo {
	padding-top: 5%;
}

#footer .body {
	margin-top: 5%;
}

#register .logo, #signup .logo {
	width: 70%;
	max-width: 200px;
}

#disclaimer {
	padding-bottom: env(safe-area-inset-bottom);
	background-color: white;
}

#disclaimer p {
	text-transform: uppercase;
	font-weight: 700;
	font-size: 8pt;
}

#disclaimer p a {
	color: #8D8D8D;
	text-decoration: none;
}

#disclaimer .margin {
	padding-top: 3%;
}


#spacer .logo {
	width: 50%;
	max-width: 200px;
}

#spacer .margin {
	padding : 8% 0 3% 3%;
}

.rounded {
	border-radius: 10px;
}

.mini {
	padding-top: 5%;
	display: flex;
	justify-content: space-between;
	align-items: center;
	color: inherit;
}

.emblem {
	text-align: right;
}

.emblem img {
	width : 20%;
	height: auto;
	max-width: 60px;
}


/* CTA ----------- */


#cta {
  display: flex;
  align-items: center;
}

.goto {
	
}

#cta .body .margin {
	border-radius: 10px;
	padding: 6% 4%;
}


.cta {
	background-color: #f2f2f1;
	height: min(14vh, 60px); 
	
	max-width: 40%;
	width: 100%;
	
	cursor: pointer;
	
	margin-left: auto;
	margin-right: auto;
	
	margin-top: auto;
	margin-bottom: 5%;
	
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
}

#header .cta {
	margin-top: auto;
}

.cta {
	background: radial-gradient(circle at 50% 50%, #b7d48a var(--r, 0%), #f2f2f1 calc(var(--r, 0%) + 1px));
	transition: background .05s linear;
}

.cta.filled span {
	color: #435649;
}

.fat {
	color: #435649;
	font-family: "Inter", sans-serif;
	font-weight: 500;
	font-size: 120%;
}


/* COLOR ----------- */


.bgwhite {
	background-color: white;
	color:#303030;
}

.bggreen {
	background-color: #435649;
	color:white;
}

.bglightgreen {
	background-color: #CCDEA8;
	color:#435649;
}

.bgblue {
	background-color: #949da3;
	color:white;
}

.bggrey {
	background-color: #303030;
	color:white;
}

.bglightgrey {
	background-color: #f2f2f1;
	color:#303030;
}


/* TEXT ----------- */


h1, h2 {
	font-family: "Advercase-Regular", serif;
	font-optical-sizing: auto;
	font-weight: 300;
	font-style: normal;
	letter-spacing: -2pt;
	
	color: inherit;
}

h3, h4 {
	font-family: "Inter", sans-serif;
	font-optical-sizing: auto;
	font-style: normal;
	
	color: inherit;
}

h2 {
	font-size: 45pt;
	padding: 5% 0 6% 0;
	line-height: 90%;
}

h3 {
	font-size: 20pt;
	font-weight: 250;
	padding: 2% 0 7% 0;
	line-height: 110%;
}

h4 {
  margin: 0 0 30px 0;
  font-size: 16pt;
  font-weight: 350;
  color: #435649;
}

.right {
	float: right;
	clear: none;
}

p {
	color:inherit;
	font-size: 15pt;
	line-height: 110%;
	margin-bottom: 5%;
	font-weight: 250;
}

p a {
	line-height: 150%;
	color: inherit;
	text-decoration: underline;
	cursor: pointer;
}

p.highlight {
	border-left: 3px solid white;
	padding-left: 3%;
}

.bgwhite p.highlight {
	border-left: 3px solid #303030;
}

#disclaimer p {
  display: flex;
  align-items: center;
  gap: 16px;
}

#disclaimer p a:last-child {
  margin-left: auto;
  padding-right: none;
}

.line {
	text-decoration: underline;
	cursor: pointer;
	color: inherit;
}

.mini span {
	font-size: 10pt;
	color: inherit;
	display: inline;
	font-weight: 400;
}

/* Phone (portrait and landscape) ----------- */
@media only screen and (min-width : 320px) and (max-width : 580px) {
	
	header {
		height: 100%;
	}
	
	.margin {
		padding : 6%;
		color: inherit;
	}
	
	#spacer .margin {
		padding : 14% 0 6% 6%;
	}
	
	#popup {
		font-size: 12pt;
	}
	
	#disclaimer p {
		font-weight: 700;
		font-size: 6pt;
	}
	
	#register.open {
		height: 100dvh;
	}
	
	.split {
		flex-direction: column;
		margin-bottom: 0%;
	}
	
	.split .b {
		order: -1;
	}
	
	.b.image {
		height: 30vh;
	}
	
	#cta .body .margin {
		border-radius: 0px;
		padding: 6% 4%;
	}
	
	.cta {
		margin-bottom: 0;
		max-width: 100%;
	}
	
	.rounded {
		border-radius: 0;
	}
	  
	h2 {
		font-size: 40pt;
		padding: 6% 0 9% 0;
	}
	
	h3 {
		font-size: 19pt;
		font-weight: 200;
		padding: 0 0 8% 0;
	}
	
	p {
		margin-bottom: 8%;
	}
	
}

/* Phone (landscape) ----------- */
@media only screen and (min-width : 321px) and (orientation : landscape) {
/* Styles */
}


/* Tablet (portrait and landscape) ----------- */
@media only screen and (min-width : 768px) and (max-width : 1024px) {
/* Styles */
}

/* Tablet (landscape) ----------- */
@media only screen and (min-width : 768px) and (max-width : 1024px) and (orientation : landscape) {
/* Styles */
}

/* Tablet (portrait) ----------- */
@media only screen and (min-width : 768px) and (max-width : 1024px) and (orientation : portrait) {
/* Styles */
}