:root {
	/* THEMES 
    * colors in HSL are like that for a reason. It's so that we can use calc() on them from CSS */

	/* FONTS */
	--font-narrow: "Archivo Narrow";

	/* FONT-SIZES (NIET AANPASSEN -- TOEVOEGEN IS OK, MAAR LAAT DE WAARDEN GELIJK!)
	 * f16 = 16px, f12 = 12px etc 
	 * Dat is allemaal relatief aan de browserinstelling van de user. We zijn uitgegaan van 16px standaard */
	--default-font-size: 16px;
	--line-height: 1.3;
	--f45: 2.8125rem;
	--f22: 1.375rem;
	--f20: 1.25rem;
	--f18: 1.125rem;
	--f16: 1rem;
	--f15: 0.9375rem;
	--f14: 0.875rem;
	--f13: 0.8125rem;
	--f12: 0.75rem;
	--f11: 0.6875rem;
	--f10: 0.625rem;

	/* abokleuren */
	--abofree: #000;
	--abofreetxt: white;
	--abobasic: #10dbdb;
	--abobasictxt: black;
	--aboplus: rgb(136, 202, 248);
	--aboplustxt: black;
	--abofull: rgb(252, 157, 89);
	--abofulltxt: black;
	--abopimp: gold;
	--abopimptxt: rgb(0, 0, 0);
	color-scheme: dark;
	--blockbgcolors: #202020;
	--altbgcolors: #2a2a2a;
	--warnondark: rgb(240, 214, 214);
	--blockhovercolor: #111;
	--sooncolor: var(--warnondark);
}

html {
	box-sizing: border-box;
	font-size: 16px;
	font-family: var(--font-narrow), arial, helvetica, sans-serif;
}

*,
*:before,
*:after {
	box-sizing: inherit;
}

body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
ol,
ul {
	margin: 0;
	padding: 0;
	font-weight: normal;
}

ol,
ul {
	list-style: none;
}

img {
	max-width: 100%;
	height: auto;
}

body {
	width: 740px;
	margin-inline: auto;
	background-color: #353535;
	text-align: center;
}
body * {
	text-align: left;
}
.aboheader {
	display: block;
	position: fixed;
	top: 0;
	margin-inline: auto;
	width: 732px;
	height: auto;
	line-height: 35px;
	background-color: #000;
	color: white;
	z-index: 1;
}
.aboheader a {
	padding: 5px 12px;
	color: white;
	cursor: pointer;
	text-decoration: none;
}

.aboholder .well {
	padding: 14px;
	background-color: var(--blockbgcolors);
	width: 732px;
	margin-top: 4px;
}

.aboholder h1 {
	font-size: var(--f22);
	margin-top: 20px;
}
.aboholder {
	justify-items: center;
}
.aboholder .warn {
	margin-block: 10px;
	color: var(--warnondark);
}
.aboblock {
	width: 180px;
	max-width: 180px;
	overflow: hidden;
	height: 220px;
	background-color: var(--blockbgcolors);
	font-size: var(--f13);
	margin-top: 10px;
	display: inline-block;
	padding-bottom: 10px;
	position: relative;
}
.aboblock:hover {
	transform: scale(1.02);
	border-right: 1px solid var(--blockhovercolor);
	border-left: 1px solid var(--blockhovercolor);
	border-bottom: 1px solid var(--blockhovercolor);
	z-index: 2;
	filter: drop-shadow(0 0 2px var(--blockhovercolor));
}
.aboblock li {
	padding-inline: 10px;
}
.aboblock li.title {
	font-size: var(--f18);
	font-weight: bold;
	padding-top: 10px;
}
.aboblock li i {
	font-size: var(--f12);
	margin-right: var(--f10);
}
.abo_free {
	display: none;
	border-top: 4px solid var(--abofree);
}
.abo_basic {
	border-top: 4px solid var(--abobasic);
}
.abo_plus {
	border-top: 4px solid var(--aboplus);
}
.abo_full {
	border-top: 4px solid var(--abofull);
}
.abo_pimp {
	border-top: 4px solid var(--abopimp);
}
.abovanaf {
	padding: 8px 0 !important;
}
.bgabo_basic {
	background-color: var(--abobasic) !important;
	color: var(--abobasictxt) !important;
}
.bgabo_plus {
	background-color: var(--aboplus) !important;
	color: var(--aboplustxt) !important;
}
.bgabo_full {
	background-color: var(--abofull) !important;
	color: var(--abofulltxt) !important;
}
.bgabo_pimp {
	background-color: var(--abopimp) !important;
	color: var(--abopimptxt) !important;
}

.abo_basic button {
	background-color: var(--abobasic);
	color: var(--abobasictxt);
}
.abo_plus button {
	background-color: var(--aboplus);
	color: var(--aboplustxt);
}
.abo_full button {
	background-color: var(--abofull);
	color: var(--abofulltxt);
}
.abo_pimp button {
	background-color: var(--abopimp);
	color: var(--abopimptxt);
}

.abobuttonholder {
	position: absolute;
	bottom: 6px;
}
.abobuttonholder button {
	display: block;
	width: 156px;
	padding: 4px;
	font-family: var(--font-narrow);
	margin-block: 4px;
	text-align: center;
	border-width: 1px;
}
.abobuttonholder button:last-child {
	font-weight: bold;
}
.abobuttonholder button:hover {
	transform: scale(1.05);
	filter: drop-shadow(0 0 2px var(--blockhovercolor));
	cursor: pointer;
}
.aboholder .normal {
	font-size: var(--f13);
}
:is(.aboblock, .abotableholder) .small {
	font-size: var(--f12);
	margin-top: -4px;
	margin-bottom: 16px;
}

.abotableholder {
	background-color: var(--blockbgcolors);
	padding: 0 8px 8px 8px;
	width: 732px;
}

.abotableholder table {
	margin-top: 16px;
	border-spacing: 0px;
	width: 100%;
	border-collapse: collapse;
}
.abotableholder tr:nth-of-type(1n + 2) {
	border-top: 1px solid #555;
	height: 26px;
}
.abotableholder tr td {
	width: 90px;
	display: inline-block;
	text-align: center;
	padding: 0;
	padding-top: 4px;
	height: auto;
	min-height: 24px;
	vertical-align: baseline;
}
.abotableholder tr.first td {
	padding-bottom: 12px;
	padding-top: 12px;
	font-size: var(--f16);
}
.abotableholder tr td:first-of-type {
	width: 252px;
	text-align: left;
}
.abotableholder :is(td, td i) {
	font-size: var(--f13);
	font-weight: normal;
}
.abotableholder td:nth-of-type(2n + 2) {
	background-color: var(--altbgcolors);
	margin-inline: 2px;
}

.abotableholder td:nth-of-type(3) {
	color: var(--abobasic);
}
.abotableholder td:nth-of-type(4) {
	color: var(--aboplus);
}
.abotableholder td:nth-of-type(5) {
	color: var(--abofull);
}
.abotableholder td:nth-of-type(6) {
	color: var(--abopimp);
}

.abotableholder td:nth-of-type(2) {
	opacity: 0.6;
}
tr.soon {
	color: var(--sooncolor);
}
button {
	cursor: pointer;
}
