/* FONTS */
.komu-new {
  font-family: "komu-new-f", sans-serif;
	font-weight: 400;
	font-style: normal;
}

/* VARIABELEN */
:root {
    /*De kleuren worden ingeladen binnen header.php, de kleuren zijn in te stellen binnen Thema opties*/
	--standaard-font-size: 1.5rem;
	--standaard-line-height: 100%;

	/*wordt gebruikt bij p, ul etc. in content*/
	--standaard-margin-bottom: 2.2rem;

	--text-color: var(--color-zwart);
	--link-color: var(--color-zwart);
	--link-hover-color: var(--color-zwart);
}

html {
	height: 100%;
	font-size: 62.5%;
}

body { 
    font-family: "Verdana", sans-serif;
	color: var(--color-groen); 
}

/* TEKST */
h1, .h1, h2, .h2, h3, .h3 {
    font-family: "komu-new-f", sans-serif;
    font-weight: 500;
	line-height: 110%;
	color: var(--color-groen);
	text-transform: uppercase;
}
h1, .h1 {
	font-size: clamp(4rem, 6vw, 7rem);
	margin-bottom: 1rem;
}
h2, .h2 {
	font-size: clamp(3rem, 6vw, 6rem);
	margin-bottom: 1rem;
}
h3, .h3 {
	font-size: clamp(2.5rem, 6vw, 4rem);
	margin-bottom: 2rem;
}
h4, .h4 {
	font-size: clamp(2rem, 6vw, 3rem);
	margin-bottom: 1rem;
} 
p {
	font-size: clamp(1.5rem, 6vw, 2rem);
	margin-bottom: 1rem;
	line-height: 110%;
	color: var(--color-groen);
}

.button,
.button:hover,
.button:focus,
.mce-content-body a.button[data-mce-selected] {
	display: inline-block;
	color: var(--color-wit);
    font-weight: 500;
	background-color: var(--color-groen); 
	font-size: clamp(1.5rem, 6vw, 2rem);
	padding: 12px 25px;
    text-align: center;
    text-transform: uppercase;
	margin-bottom: 2rem;
    outline: none;
    border-radius: 25px;
	text-decoration: none;
	cursor: pointer;
	-webkit-transition:all 0.2s ease-in-out;
	transition:all 0.2s ease-in-out;
}
.button:hover,
.button:focus {
	background-color: rgba(0,0,0,0.5);
}
.button:has( + br + a) {
	margin-bottom: 1.6rem;
}
.button-wit {
	border: 1px solid var(--color-groen);
}
.button-groen {
	border: 1px solid var(--color-groen);
}

/* LIJST EDITOR CHECKLIST */
ul.checklist {
    padding: 0 !important;
    list-style: none;
	margin-bottom: 5rem;
}
ul.checklist li {
	position: relative;
    padding-left: 3rem;
	margin-bottom: 15px;
}
ul.checklist li:before {
	content: "\f058";
	font-family: "Font Awesome 6 Pro";
    position: absolute;
    left: 0;
    top: 0.2rem;
	font-weight: bold;
}

/* LIJST EDITOR PIJLTJES */
ul.lijst_met_pijlen {
    padding: 0 !important;
    list-style: none;
	margin-bottom: 3rem;
}
ul.lijst_met_pijlen li {
	position: relative;
    padding-left: 3rem;
	margin-bottom: 15px;
}
ul.lijst_met_pijlen li:before {
	content: "\f054";
	font-family: "Font Awesome 6 Pro";
    position: absolute;
    left: 0;
    top: 0.2rem;
	font-weight: bold;
}

blockquote {
	padding: 6rem 3rem;
	background-color: var(--color-zwart);
	margin-top: var(--contentblok-margin-y);
	margin-bottom: var(--contentblok-margin-y);
}
blockquote p {
	margin: 0;
	color: var(--color-black);
	font-size: 1.6rem;
	font-style: italic;
	letter-spacing: normal;
	line-height: 2.4rem;
}
blockquote p + p {
	margin-top: var(--standaard-margin-bottom);
}

a.link_met_pijl,
a.link_met_pijl:hover,
a.link_met_pijl:focus {
    position: relative;
}
a.link_met_pijl:after {
    content: "";
}


/***********************************************
TABLET
***********************************************/
@media (min-width: 768px) {
	.button:has( + br + a) {
		margin-bottom: 0;
		margin-right: 1.2rem;
	}
	.button:has( + br + a) + br {
		display: none;
	}
}
@media (min-width: 992px) {
	h1, .h1 {
		margin-bottom: 3.2rem;
	}
	h2, .h2 {
	}
	h3, .h3 {
	}
}