:root {
	/* Colors */
	--primary: #20248e;
	--primary-bg: #20248e;
	--primary-dark: #252525;
	--primary-light: #252525;

	--secondary: #ff9000;
	--secondary-bg: #ff9000;
	--secondary-dark: #ff9000;
	--secondary-light: #ff9000;

	--tertiary: #4a4c87;
	--tertiary-bg: #4a4c87;
	--tertiary-dark: #4a4c87;
	--tertiary-light: #4a4c87;

	/* Fonts */
	--font-family-heading: "Archivo", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
		"Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif,
		"Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
	--font-family-sans-serif: "Archivo", -apple-system, BlinkMacSystemFont, "Segoe UI",
		Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif,
		"Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
	--line-height: 1.5;

	/* Borders */
	--button-border: 2px;
	--dropdown-border: 1px;
	--input-border: 2px;
	--panel-border: 1px;

	/* Radii */
	--button-radius: 0.25rem;
	--dropdown-radius: 0.25rem;
	--input-radius: 0.25rem;
	--panel-radius: 0.5rem;

	/* Padding */
	--button-padding: 1rem;
	--dropdown-padding: 1rem;
	--input-padding: 1rem;
	--panel-padding: 1rem;

	--navigation-height: 6rem;
}

html {
	scroll-behavior: smooth;
}

@media (prefers-reduced-motion) {
	html {
		scroll-behavior: unset;
	}
}

body {
	font-family: var(--font-family-sans-serif);
	font-size: 1rem;
	font-weight: 300;
	color: var(--primary-dark);
}

body.fixed {
	overflow: hidden;
}

h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
	font-family: var(--font-family-heading);
	font-weight: 600;
	color: var(--primary-dark);
}

h1, .h1 {
	font-size: 1.5rem;
	line-height: 1.5rem;
	margin: 0 0 2rem 0;
}

h2, .h2 {
	font-size: 1.25rem;
	line-height: 1.25rem;
}

h3, .h3,
h4, .h4,
h5, .h5,
h6, .h6 {
	font-size: 1.15rem;
	line-height: 1.15rem;
}

h1.title,
h2.title,
h3.title {
	position: relative;
	font-size: 1.5rem;
	line-height: 1.5rem;
	margin: 0 0 2rem 0;
	color: var(--primary-dark);
}

@media only screen and (min-width: 768px) {
	/* Medium (md) */
	h1, .h1 {
		font-size: 2.25rem;
		line-height: 2.25rem;
	}
	h2, .h2 {
		font-size: 2rem;
		line-height: 2rem;
	}
	h3, .h3,
	h4, .h4,
	h5, .h5,
	h6, .h6 {
		font-size: 1.5rem;
		line-height: 1.5rem;
	}
	h1.title,
	h2.title,
	h3.title {
		font-size: 2.25rem;
		line-height: 2.25rem;
	}
}

.primarytxt,
.primarytxt h1,
.primarytxt h2,
.primarytxt h3,
.primarytxt h4,
.primarytxt h5,
.primarytxt h6 {
	color: var(--primary) !important;
}

.secondarytxt,
.secondarytxt h1,
.secondarytxt h2,
.secondarytxt h3,
.secondarytxt h4,
.secondarytxt h5,
.secondarytxt h6 {
	color: var(--secondary) !important;
}

.tertiarytxt,
.tertiarytxt h1,
.tertiarytxt h2,
.tertiarytxt h3,
.tertiarytxt h4,
.tertiarytxt h5,
.tertiarytxt h6 {
	color: var(--tertiary) !important;
}

.whitetxt,
.whitetxt h1,
.whitetxt h2,
.whitetxt h3,
.whitetxt h4,
.whitetxt h5,
.whitetxt h6 {
	color: white !important;
}

b, .b {

}

p, .p,
label, .label,
legend, .legend {

}

small, .small {

}

strong, .strong {
	font-weight: 700;
}

hr {
	margin-top: 2rem;
    margin-bottom: 2rem;
    border-top: 1px solid rgba(0, 0, 0, 0.25);
}

a {
	color: var(--secondary);
	-webkit-transition: all 0.3s;
	   -moz-transition: all 0.3s;
		-ms-transition: all 0.3s;
		 -o-transition: all 0.3s;
			transition: all 0.3s;
}

a:hover,
a:focus,
a:active {
	color: var(--secondary);
}

.nopad {
	padding: 0 !important;
}

.top-nopad {
	padding-top: 0 !important;
}

.bot-nopad {
	padding-bottom: 0 !important;
}

.width-100 {
	width: 100%;
}

.height-100 {
	height: 100%;
}

.overflow-hidden {
	overflow: hidden;
}

.boxshadow {
	-webkit-box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.25);
	   -moz-box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.25);
		-ms-box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.25);
		 -o-box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.25);
			box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.25);
}

/* [IMAGE BACKGROUND] */
body:not([data-editor-mode="content"]) .image-to-background {
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	bottom: 0;
	z-index: -1;
}

body:not([data-editor-mode="content"]) .image-to-background div {
	height: 100%;
}

body:not([data-editor-mode="content"]) .image-to-background img {
	height: 100%;
	object-fit: cover;
	object-position: 50%;
}

/* [ADMINBAR] */
html[data-logged="true"] header.nav-header {
	top: 0;
}

@media only screen and (min-width: 576px) {
	/* Small (sm) */
	html[data-logged="true"] header.nav-header {
		top: 0;
	}
}

@media only screen and (min-width: 768px) {
	/* Medium (md) */
	html[data-logged="true"] header.nav-header {
		top: 0;
	}
	.text-right {
		text-align: right !important;
	}
}

@media only screen and (min-width: 992px) {
	/* Large (lg) */
	html[data-logged="true"] header.nav-header {
		top: 0;
	}
}

/* [HEADER] */
header.nav-header {
	position: sticky;
	display: block;
	width: 100%;
	z-index: 1040;
	padding: 0;
	top: 0;
	left: 0;
	background-color: rgba(255, 255, 255, 1);
	-webkit-box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0);
	   -moz-box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0);
	    -ms-box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0);
	     -o-box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0);
		  	box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0);
	-webkit-transition: all 0.3s;
	   -moz-transition: all 0.3s;
		-ms-transition: all 0.3s;
		 -o-transition: all 0.3s;
			transition: all 0.3s;
}

header.nav-header.scroll {
	position: sticky;
	background-color: rgba(255, 255, 255, 1);
	-webkit-box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.15);
	   -moz-box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.15);
	    -ms-box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.15);
	     -o-box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.15);
		    box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.15);
}

header.nav-header .logo {
	position: relative;
	display: flex;
}

header.nav-header .logo a {
	width: 100%;
	height: 100%;
}

header.nav-header .logo img,
footer.nav-footer .logo img {
	-webkit-filter: grayscale(0%);
			filter: grayscale(0%);
	-webkit-transition: .3s ease-in-out;
			transition: .3s ease-in-out;
}

header.nav-header .logo:hover img,
header.nav-header .logo:focus img,
footer.nav-footer .logo:hover img,
footer.nav-footer .logo:focus img {
	-webkit-filter: grayscale(100%);
			filter: grayscale(100%);
}

header.nav-header .top {
	background: rgb(80,82,162);
	background: -moz-linear-gradient(90deg, rgba(80,82,162,1) 0%, rgba(80,82,162,1) 10%, rgba(73,76,135,1) 10%, rgba(73,76,135,1) 30%, rgba(81,82,162,1) 30%, rgba(81,82,162,1) 40%, rgba(33,36,142,1) 40%, rgba(33,36,142,1) 60%, rgba(73,76,135,1) 60%, rgba(73,76,135,1) 70%, rgba(80,82,162,1) 70%, rgba(80,82,162,1) 100%);
	background: -webkit-linear-gradient(90deg, rgba(80,82,162,1) 0%, rgba(80,82,162,1) 10%, rgba(73,76,135,1) 10%, rgba(73,76,135,1) 30%, rgba(81,82,162,1) 30%, rgba(81,82,162,1) 40%, rgba(33,36,142,1) 40%, rgba(33,36,142,1) 60%, rgba(73,76,135,1) 60%, rgba(73,76,135,1) 70%, rgba(80,82,162,1) 70%, rgba(80,82,162,1) 100%);
	background: linear-gradient(90deg, rgba(80,82,162,1) 0%, rgba(80,82,162,1) 10%, rgba(73,76,135,1) 10%, rgba(73,76,135,1) 30%, rgba(81,82,162,1) 30%, rgba(81,82,162,1) 40%, rgba(33,36,142,1) 40%, rgba(33,36,142,1) 60%, rgba(73,76,135,1) 60%, rgba(73,76,135,1) 70%, rgba(80,82,162,1) 70%, rgba(80,82,162,1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#5052a2",endColorstr="#5052a2",GradientType=1);
}

header.nav-header .bottom {
	background-color: var(--white);
	padding: 0.75rem;
}

header.nav-header nav.navbar-light {
	position: relative;
	width: 100%;
	padding: 0;
}

@media only screen and (min-width: 992px) {
	/* Large (lg) */
	#adminbar + * .nav-header {
		top: 3.5rem;
	}
}

/* [MENU] */

/*
# Topmenu
# Desktop Menu
# Hamburger
# Collapse Menu
# Mobile extra
*/

/* Topmenu */
header.nav-header .top ul.navlist-nav {
	display: flex;
	flex-direction: row;
    justify-content: flex-end;
	margin-bottom: 0;
}

header.nav-header .top ul.navlist-nav li {
	font-size: 1rem;
}

header.nav-header .top ul.navlist-nav li a {
	color: var(--white);
	background-color: var(--primary-bg);
}

header.nav-header .top ul.navlist-nav li a:hover,
header.nav-header .top ul.navlist-nav li a:focus {
	color: var(--primary-bg);
	background-color: var(--white);
}

header.nav-header .top ul.navlist-nav li a.active {
	background-color: var(--primary-dark);
}

header.nav-header .top ul.navlist-nav li a.active:hover,
header.nav-header .top ul.navlist-nav li a.active:focus {
	color: var(--primary-dark);
	background-color: var(--white);
}

/* Desktop Menu */
ul.navbar {
	display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
	list-style: none;
	width: 100%;
	height: 100%;
	padding: 0;
	margin: 0;
}

ul.navbar li {
	font-family: var(--font-family-sans-serif);
	font-size: 1.15rem;
	font-weight: 600;
	margin-right: 3rem;
}

ul.navbar li:last-child {
	margin-right: 0;
}

ul.navbar li a {
	position: relative;
	color: var(--primary);
	text-decoration: none;
	padding: 0.5rem 0;
	-webkit-transition: all 0.3s;
	   -moz-transition: all 0.3s;
		-ms-transition: all 0.3s;
		 -o-transition: all 0.3s;
			transition: all 0.3s;
}

ul.navbar li a:hover,
ul.navbar li a:focus {
	color: var(--secondary);
	background-color: transparent;
}

ul.navbar li a:before {
	content: "";
	position: absolute;
	left: 0;
	bottom: 4px;
	width: 0%;
	height: 1px;
	background: var(--secondary);
	transition: all 0.4s ease;
}

ul.navbar li a:hover:before,
ul.navbar li a:focus:before {
	width: 100%;
}

ul.navbar li a.active {
	color: var(--secondary);
}

ul.navbar li a.active:hover,
ul.navbar li a.active:focus {
	color: var(--primary);
}

ul.navbar li a.active:before {
	width: 0%;
	background: var(--primary);
}

ul.navbar li a.active:hover:before,
ul.navbar li a.active:focus:before {
	width: 100%;
}

ul.navbar li.dropdown .dropdown-menu {
	margin-top: 23px;
	padding: 0;
	border: 0;
	border-radius: 0;
	background-color: var(--primary);
	color: var(--white);
}

ul.navbar li.dropdown .dropdown-menu a.dropdown-item {
	border: 1px solid var(--primary);
	color: var(--primary);
	background-color: var(--white);
}

ul.navbar li.dropdown .dropdown-menu a.dropdown-item:hover,
ul.navbar li.dropdown .dropdown-menu a.dropdown-item:focus {
	color: var(--white);
	background-color: var(--primary);
}

ul.navbar li.dropdown .dropdown-menu a.dropdown-item.active,
ul.navbar li.dropdown .dropdown-menu a.dropdown-item:active {
	border: 1px solid var(--black);
	color: var(--white);
	background-color: var(--black);
}

ul.navbar li.dropdown .dropdown-menu a.dropdown-item.active:hover,
ul.navbar li.dropdown .dropdown-menu a.dropdown-item.active:focus {
	border: 1px solid var(--black);
	color: var(--black);
	background-color: var(--white);
}

/* Hamburger */
.hamburger {
	position: absolute;
	display: inline-block;
	z-index: 52;
	top: -0.5rem;
	right: 0;
	color: white;
}

.ham {
	cursor: pointer;
	-webkit-tap-highlight-color: transparent;
	transition: transform 400ms;
	-webkit-user-select: none;
	   -moz-user-select: none;
	    -ms-user-select: none;
	        user-select: none;
}

.hamRotate.active {
	transform: rotate(45deg);
}

.hamRotate180.active {
	transform: rotate(180deg);
}

.line {
	fill: none;
	transition: stroke-dasharray 400ms, stroke-dashoffset 400ms;
	stroke: var(--primary);
	stroke-width: 5.5;
	stroke-linecap: round;
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	-ms-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
}

.ham:hover .line {
	stroke: var(--primary);
}

.ham.active .line {
	stroke: var(--primary);
}

.ham.active:hover .line {
	stroke: var(--secondary);
}

.ham1 .top {
	stroke-dasharray: 40 139;
}

.ham1 .bottom {
	stroke-dasharray: 40 180;
}

.ham1.active .top {
	stroke-dashoffset: -98px;
}

.ham1.active .bottom {
	stroke-dashoffset: -138px;
}

/* Collapse Menu */
.navbar-mobile {
	position: absolute;
	display: flex;
	flex-direction: column;
    justify-content: center;
	width: 100%;
	height: 100%;
	z-index: -1;
	color: black;
	top: 60px;
	right: unset;
	left: -100%;
	opacity: 0;
	padding: 1rem 0;
	pointer-events: none;
	-webkit-transition: all 0.5s;
	   -moz-transition: all 0.5s;
		-ms-transition: all 0.5s;
		 -o-transition: all 0.5s;
			transition: all 0.5s;
}

.navbar-mobile.navbar--open {
	right: unset;
	left: 0;
	opacity: 1;
	height: 90vh;
	pointer-events: all;
	background-color: var(--primary);
}

header.nav-header.scroll .navbar-mobile.navbar--open  {
	background-color: var(--primary);
	-webkit-box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.25);
	   -moz-box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.25);
		-ms-box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.25);
		 -o-box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.25);
			box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.25);
}

.navbar-mobile ul.navlist-nav {
	display: flex;
	flex-direction: column;
    align-content: center;
    justify-content: space-between;
	align-items: flex-start;
	margin: 0;
	padding: 0;
}

.navbar-mobile ul.navlist-nav li {
	font-weight: 700;
	font-size: 1.25rem;
	color: white;
	display: inline;
	width: 100%;
	margin-bottom: 1rem;
}

.navbar-mobile ul.navlist-nav li:last-child {
	margin-bottom: 0;
}

.navbar-mobile ul.navlist-nav li .nav-link,
.navbar-mobile ul.navlist-nav li a {
	position: relative;
	font-weight: 700;
	font-size: 1.25rem;
	color: white;
	padding: 0.25rem 0;
	display: inline;
	width: 100%;
}

.navbar-mobile ul.navlist-nav li a:hover,
.navbar-mobile ul.navlist-nav li a:focus {
	color: var(--secondary);
}

.navbar-mobile ul.navlist-nav li a:before {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	width: 0%;
	height: 1px;
	background: var(--secondary);
	transition: all 0.4s ease;
}

.navbar-mobile ul.navlist-nav li a:hover:before,
.navbar-mobile ul.navlist-nav li a:focus:before {
	width: 100%;
}

.navbar-mobile ul.navlist-nav li a.active {
	color: var(--secondary);
}

.navbar-mobile ul.navlist-nav li a.active:hover,
.navbar-mobile ul.navlist-nav li a.active:focus {
	color: white;
}

.navbar-mobile ul.navlist-nav li a.active:before {
	width: 100%;
	background: var(--secondary);
}

.navbar-mobile ul.navlist-nav li a.active:hover:before,
.navbar-mobile ul.navlist-nav li a.active:focus:before {
	width: 0%;
	background: var(--secondary);
}

.navbar-mobile ul.navlist-nav li a .nav-icon,
.navbar-mobile ul.navlist-nav li a .nav-indentation {
	display: none;
}

.navbar-mobile ul.navlist-nav li > ul {
	padding-left: 0;
	margin-top: 0.5rem;
}

.navbar-mobile ul.navlist-nav li > ul li {
	position: relative;
	margin-right: 1rem;
}

.navbar-mobile ul.navlist-nav li > ul li:before {
	position: relative;
	color: var(--secondary);
	display: inline-block;
	font-family: "Font Awesome 6 Pro";
	font-weight: 400;
	font-size: 1rem;
	content: "\f054";
	margin: 0 0.5rem 0 0;
}

.navbar-mobile ul.navlist-nav li > ul li:last-child {
	margin-right: 0;
}

@media only screen and (min-width: 576px) {
	/* Small (sm) */
	.navbar-mobile {
		top: 65px;
	}
	@media (orientation: landscape) {
		.navbar-mobile {
			top: 0;
		}
	}
}

@media only screen and (min-width: 768px) {
	/* Medium (md) */
	.navbar-mobile {
		top: 80px;
		padding: 6rem 0 3rem 0;
	}
}

@media only screen and (min-width: 992px) {
	/* Large (lg) */
	.navbar-mobile {
		top: 80px;
	}
}

@media only screen and (min-width: 1200px) {
	/* Extra large (xl) */
}

/* Mobile extra */
/* Place on the bottom of the screen. */
.navbar-static-bar {
	position: fixed;
	display: block;
	z-index: 1039;
	bottom: 0;
	left: 0;
	width: 100%;
	background-color: var(--primary-dark);
	color: white;

	box-shadow: 0 -0.5rem 0.5rem rgba(0, 0, 0, 0.15);

	--static-bar-width: 33%;
	--static-bar-spacing: 0.2rem;
}

/* Make it a horizontally scrollable list. */
.navbar-static-bar .navlist-nav {
	list-style-type: none;
	padding: 0;
	margin: 0;
	overflow-x: auto;
}

/* Hide scrollbar. */
.navbar-static-bar .navlist-nav::-webkit-scrollbar {
	display: none;
}

.navbar-static-bar .nav-item {
	position: relative;
	display: inline-block;
	width: calc(var(--static-bar-width) - calc(3 * var(--static-bar-spacing)));
	margin-left: var(--static-bar-spacing);
	margin-right: var(--static-bar-spacing);
	vertical-align: middle;
}

/* Place a line in between each item. */
.navbar-static-bar .nav-item:after {
	content: "";
	position: absolute;
	display: block;
	width: 1px;
	top: 20%;
	bottom: 20%;
	left: calc(100% + var(--static-bar-spacing) + 1px);

	background-color: var(--white);
}

.navbar-static-bar .nav-item:last-child:after {
	display: none;
}

/* Place icon and text vertical. */
.navbar-static-bar .nav-link {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	padding: 0.75rem;
	color: inherit;
}

.navbar-static-bar .nav-icon {
	font-size: 1.25rem;
	margin-bottom: 0.5rem;
}

.navbar-static-bar .nav-indentation {
	display: none;
}

.navbar-static-bar .nav-title {
	font-size: 0.75rem;
	line-height: 0.75rem;
	font-weight: 300;
	text-align: center;
}

/* Highlight when selected. */
.navbar-static-bar .nav-link:active,
.navbar-static-bar .nav-link:hover,
.navbar-static-bar .nav-link:focus {
	text-decoration: none;
	color: inherit;
	background-color: var(--primary);
}

/* Move asside for the admin bar. */
@media screen and (max-width: 991px) {
	[data-logged="true"] .navbar-static-bar {
		margin-bottom: 3.125rem;
	}
}

/* Offset height below the footer for the navigation bar. */
.navbar-static-bar-offset {
	height: 4.625rem;
}

/* [CAROUSEL] */
section.header {
	position: relative;
	display: block;
	width: 100%;
	height: auto;
}

section.header .carousel {
	position: relative;
}

section.header .carousel-caption {
    position: absolute;
	display: none;
	left: unset;
    top: 15%;
	right: 5%;
    z-index: 50;
	background-color: transparent;
	font-family: var(--font-family-heading);
    color: white;
	font-size: 2rem;
	font-weight: 600;
	text-align: right;
	border-radius: 0;
	margin: 0;
	padding: 0;
	text-shadow: 1px 1px 2px rgba(0, 0, 0, 1);
}

section.header .carousel-caption .btn {
	text-shadow: none;
}

/* Modal */
.modal .items .carousel-item .carousel-caption {
	right: 5%;
	left: unset;
	font-family: var(--font-family-heading);
	color: white;
	font-size: 1.25rem;
	line-height: 1.25rem;
	text-align: right;
	background-color: transparent;
	border-radius: 0;
	margin: 0;
	padding: 0;
}

.modal .items .carousel-item .carousel-caption p:last-child {
	margin-bottom: 0;
}

@media only screen and (min-width: 768px) {
	/* Medium (md) */
	section.header .carousel-caption {
		display: inline-block;
		overflow: hidden;
	}
}

/* [CALCULATOR] */
.calculator {
	position: relative;
	display: block;
	margin-top: -30px;
}

.calculator .box {
	position: relative;
	display: block;
	background-color: var(--white);
	padding: 1rem;
	margin-top: 0px;
}

body[data-editor-mode="content"] .calculator .box {
	margin-top: 0;
}

.calculator .box.bluebg {
	background-color: var(--primary);
	color: var(--white);
}

.calculator .box.bluebg .calc-title {
	font-size: 1.15rem;
	line-height: 1.15rem;
	font-weight: 600;
	color: var(--white);
	hyphens: auto;
}

.calculator .box ul {
	list-style-type: none;
	margin: 0;
	padding: 0;
}

.calculator .box ul li {
	position: relative;
	padding-left: 1.5rem;
	margin-bottom: 0.25rem;
}

.calculator .box ul li:last-child {
	margin-bottom: 0;
}

.calculator .box ul li:before {
    position: absolute;
    top: 4px;
    left: 0;
    color: var(--secondary);
    display: inline-block;
    font: var(--fa-font-regular);
    font-size: 1rem;
    content: "\f00c";
    margin: 0;
}

.whitebg .h3 {
	font-size: 1.75rem !important;
	line-height: 1.75rem !important;
	margin-bottom: 2rem !important;
}

.btn-zakelijk,
.btn-particulier {
	outline: none !important;
	box-shadow: none !important;
	font-size: 11px !important;
}

@media only screen and (min-width: 768px) {
	/* Medium (md) */
	.calculator {
		margin-top: 0;
	}
	.calculator .box {
		margin-top: -300px;
	}
	.calculator .box.bluebg .calc-title {
		font-size: 1.25rem;
		line-height: 1.25rem;
	}
	.whitebg .h3 {
		font-size: 2.25rem !important;
		line-height: 2.25rem !important;
	}
	.btn-zakelijk,
	.btn-particulier {
		font-size: 14px;
	}
}

/* [CONTENT] */
section.content-template-default {
	position: relative;
	padding: 3rem 0;
}

section.content-subtemplate-home {
	padding: 1.5rem 0 3rem 0;
}

.primarybg {
	background-color: var(--primary-bg);
}

.secondarybg {
	background-color: var(--secondary-bg);
}

.tertiarybg {
	background-color: var(--tertiary-bg);
}

.greybg {
	background-color: #ebebeb;
}

.whitebg {
	background-color: var(--white);
}

.flex-middle {
	display: flex;
	flex-direction: column;
    justify-content: center;
	width: 100%;
	height: 100%;
}

.flex-bottom {
	display: flex;
	flex-direction: column;
    justify-content: flex-end;
	width: 100%;
	height: 100%;
}

div[data-partial="youtube"] {
	margin-top: 2rem;
	margin-bottom: 2rem;
}

.googlemap {
	position: relative;
	margin: 0;
	padding: 0;
}

.content-template-default .iconlist ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.content-template-default .iconlist ul li {
	margin-bottom: 1rem;
	font-weight: 300;
}

.content-template-default .iconlist ul li:last-child {
	margin-bottom: 0;
}

.content-template-default .iconlist ul li:before {
    display: inline-block;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    font: var(--fa-font-solid);
	font-size: 1.15rem;
    content: "\f00c";
    padding-right: 1rem;
	color: var(--secondary);
}

section.ctabar {
	position: relative;
	padding: 2rem 0;
	background-color: var(--primary);
	color: var(--white);
	font-size: 1.75rem;
	font-weight: 600;
	line-height: 2.5rem;
}

section.ctabar p:last-child {
	margin-bottom: 0;
}

@media only screen and (min-width: 768px) {
	/* Medium (md) */
	section.content-template-default {
		padding: 5rem 0;
	}
	section.content-subtemplate-home {
		padding: 3rem 0;
	}
}

/* [SIDE IMG] */
.sideimg {
	position: relative;
	top: unset;
	bottom: unset;
	width: 100%;
	height: 400px;
	display: flex;
	flex-direction: column;
	z-index: 1;
	overflow: hidden;
}

.sideimg.left {
	left: unset;
}

.sideimg.right {
	right: unset;
}

.sideimg.quarter {
	width: 100%;
}

.sideimg.half {
	width: 100%;
}

@media only screen and (min-width: 768px) {
	.sideimg {
		position: absolute;
		top: 0;
		bottom: 0;
		height: 100%;
	}
	.sideimg.quarter {
		width: 40%;
	}
	.sideimg.half {
		width: 45%;
	}
	.sideimg.left {
		left: 0;
	}
	.sideimg.right {
		right: 0;
	}
}

/* [BLOKKEN] */
.blok {
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
    align-items: flex-start;
	width: 100%;
	height: 100%;
	z-index: 2;
	color: white;
}

.blok.padding {
	padding: 1.5rem;
}

.blok h3.subtitle {
	color: white;
	font-size: 1.5rem;
	line-height: 2rem;
	font-weight: 300;
	text-transform: none;
}

.blok h3.subtitle strong {
	font-weight: 600;
}

.blok a.btn {
	background-color: transparent;
	color: white;
	font-size: 1rem;
	border-color: white;
}

.blok a.btn:hover,
.blok a.btn:focus {
	background-color: white;
	border-color: var(--primary-dark) !important;
	color: var(--primary-dark) !important;
}

.blok.primarybg a.btn:hover,
.blok.primarybg a.btn:hover {
	border-color: var(--primary-dark) !important;
	color: var(--primary-dark) !important;
}

.blok.secondarybg a.btn:hover,
.blok.secondarybg-light a.btn:hover {
	border-color: var(--primary-dark) !important;
	color: var(--primary-dark) !important;
}

.blok.tertiarybg a.btn:hover,
.blok.tertiarybg a.btn:hover {
	border-color: var(--primary-dark) !important;
	color: var(--primary-dark) !important;
}


/* [ACCORDION] */
.accordion .collapsible-text {
	border-top: 1px solid #ebebeb;
}

.accordion div[data-partial="text-collapsible"]:last-child .collapsible-text {
	border-bottom: 1px solid #ebebeb;
}

.accordion .collapsible-text .collapsible-text-title {
	border-radius: 0;
	border: 0;
	font-size: 1.1rem;
    line-height: 1.1rem;
	color: var(--primary-dark);
	font-weight: 100;
	padding: 1rem 0;
	outline: none;
	box-shadow: none;
}

.accordion .collapsible-text .collapsible-text-title:before {
	position: relative;
	display: inline-block;
	margin-right: 1.5rem;
	color: var(--secondary);
	font-family: "Font Awesome 6 Pro";
    font-weight: 700;
    font-size: 1rem;
	line-height: 1rem;
    content: "\f078";
}

.accordion .collapsible-text .collapsible-text-title.collapsed:before {
	content: "\f054";
}

.accordion .collapsible-text .collapsible-text-content {
    border-color: white;
    border-radius: 0rem;
    border-style: solid;
    border-top-right-radius: 0;
    border-top-left-radius: 0;
    border-width: 0;
    border-top-width: 0;
}

.accordion .collapsible-text .collapsible-text-content .pt-2,
.accordion .collapsible-text .collapsible-text-content .px-3 {
	padding: 0 !important;
}

/* [TABLES] */
table.mce-item-table {
	width: 100%;
	font-size: 1.1rem;
}

.table-bordered,
.table-bordered th,
.table-bordered td {
	border: 0 !important;
}

table.mce-item-table tr {
	display: flex;
	flex-direction: column;
	border-bottom: 1px solid rgba(255, 255, 255, 0.25) !important;
}

table.mce-item-table tr:last-child {
	border-bottom: 0;
}

table.mce-item-table tr th {
	display: none;
	flex-direction: row;
	padding: 0.5rem 0;
	width: 100%;
	color: var(--secondary);
}

table.mce-item-table tr td {
	display: flex;
	flex-direction: row;
	padding: 0.5rem 1rem 0.5rem 0;
	width: 100%;
}

@media only screen and (min-width: 768px) {
	/* Medium (md) */
	table.mce-item-table tr {
		flex-direction: row;
	}
	table.mce-item-table tr th {
		display: flex;
	}
	table.mce-item-table tr td {
		width: 100%;
	}
}

/* [BUTTONS] */
.btn-primary:not(.btn-admin),
.btn-secondary:not(.btn-admin),
.btn-tertiary:not(.btn-admin),
.btn-link:not(.btn-admin) {
	position: relative;
	font-family: var(--font-family-sans-serif);
	font-size: 1.15rem;
	font-weight: 700;
	display: block;
	width: 100%;
	text-decoration: none;
	padding: 0.5rem 1.5rem !important;
	text-align: center;
	-webkit-box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.1);
	   -moz-box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.1);
		-ms-box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.1);
		 -o-box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.1);
			box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.1);
}

.btn-primary:not(.btn-admin) i,
.btn-secondary:not(.btn-admin) i,
.btn-tertiary:not(.btn-admin) i,
.btn-link:not(.btn-admin) i {
	margin-left: 0.5rem;
	font-size: 1.15rem;
}

.btn-primary:not(.btn-admin) {
	border-color: white;
	background-color: var(--primary);
	color: white;
}

.btn-primary:not(.btn-admin):hover,
.btn-primary:not(.btn-admin):focus {
	border-color: var(--primary);
	background-color: white;
	color: var(--primary);
}

.btn-secondary:not(.btn-admin) {
	border-color: var(--secondary);
	background-color: var(--secondary);
	color: white;
}

.btn-secondary:not(.btn-admin):hover,
.btn-secondary:not(.btn-admin):focus {
	border-color: var(--secondary);
	background-color: white;
	color: var(--secondary);
}

.btn-tertiary:not(.btn-admin) {
	border-color: var(--primary);
	background-color: white;
	color: var(--primary);
}

.btn-tertiary:not(.btn-admin):hover,
.btn-tertiary:not(.btn-admin):focus {
	border-color: white;
	background-color: var(--primary);
	color: white;
}

.btn-link:not(.btn-admin) {
	border-color: var(--secondary);
	background-color: transparent;
	color: var(--secondary);
}

.btn-link:not(.btn-admin):hover,
.btn-link:not(.btn-admin):focus {
	border-color: white;
	background-color: var(--secondary);
	color: white;
}

.btn-back:not(.btn-admin) {
	position: relative;
	font-family: var(--font-family-sans-serif);
	font-size: 1rem;
	font-weight: 400;
	display: block;
	width: 100%;
	text-align: left;
	padding: 0 !important;
	color: var(--primary);
	background-color: transparent;
	border-color: transparent;
	text-decoration: none;
}

.btn-back:not(.btn-admin):before {
    display: inline-block;
    font-family: "Font Awesome 6 Pro";
    font-weight: 400;
    font-size: 1rem;
    content: "\f177";
    margin-right: 1rem;
	color: var(--primary);
}

.btn-back:not(.btn-admin):hover,
.btn-back:not(.btn-admin):focus {
	background-color: transparent;
	color: black;
}

.btn-back:not(.btn-admin):hover:before,
.btn-back:not(.btn-admin):focus:before {
	color: var(--primary);
}

.btn-primary:not(.btn-admin):focus,
.btn-secondary:not(.btn-admin):focus,
.btn-tertiary:not(.btn-admin):focus,
.btn-link:not(.btn-admin):focus,
.btn-back:not(.btn-admin):focus {
	box-shadow: none;
}

@media only screen and (min-width: 576px) {
	/* Small (sm) */
	.btn-primary:not(.btn-admin),
	.btn-secondary:not(.btn-admin),
	.btn-tertiary:not(.btn-admin),
	.btn-link:not(.btn-admin),
	.btn-back:not(.btn-admin) {
		display: block;
		width: 100%;
		text-align: center;
	}
}

@media only screen and (min-width: 768px) {
	/* Medium (md) */
	.btn-primary:not(.btn-admin),
	.btn-secondary:not(.btn-admin),
	.btn-tertiary:not(.btn-admin),
	.btn-link:not(.btn-admin) {

		width: auto;
		font-size: 1rem;
		padding: 0.5rem 1rem !important;
	}
}

@media only screen and (min-width: 992px) {
	/* Large (lg) */
	.btn-primary:not(.btn-admin),
	.btn-secondary:not(.btn-admin),
	.btn-tertiary:not(.btn-admin),
	.btn-link:not(.btn-admin),
	.btn-back:not(.btn-admin) {

		width: auto;
	}
}

/* [ADRES] */
.details .subtitle {
	font-family: var(--font-family-heading);
    font-size: 1.5rem;
    line-height: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    margin: 0;
}

ul.contact {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
}

ul.contact li {
	margin: 0 0 1rem 0;
	display: flex;
	flex-direction: row;
	align-items: center;
}

ul.contact li:last-child {
	margin: 0;
}

ul.contact li i {
	margin: 0 0.5rem 0 0;
	min-width: 23px;
	font-size: 1.15rem;
	color: var(--secondary);
}

ul.contact li a {
	position: relative;
	text-decoration: none;
	color: var(--primary-dark);
}

ul.contact li a:hover,
ul.contact li a:focus {
	color: var(--secondary);
}

ul.contact li a:before {
	content: "";
	position: absolute;
	left: 0;
	bottom: -4px;
	width: 0%;
	height: 1px;
	background: var(--secondary);
	transition: all 0.4s ease;
}

ul.contact li a:hover:before,
ul.contact li a:focus:before {
	width: 100%;
}

ul.contact li a address {
	margin-bottom: 0 !important;
}

/* [SOCIALS] */
ul.socials {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	align-items: center;
	font-size: 1.25rem;
}

ul.socials li {
	margin: 0 0.25rem 0 0;
	font-size: 1.5rem;
}

ul.socials li:last-child {
	margin: 0;
}

ul.socials li a {
	opacity: 1;
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	-ms-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
}

ul.socials li a:hover,
ul.socials li a:focus {
	opacity: 1;
}

ul.socials li a.facebook {
	color: #1877f2;
}

ul.socials li a.facebook:hover,
ul.socials li a.facebook:focus {
	color: var(--primary-dark);
}

ul.socials li a.instagram {
	color: #c32aa3;
}

ul.socials li a.instagram:hover,
ul.socials li a.instagram:focus {
	color: var(--primary-dark);
}

ul.socials li a.tiktok {
	color: #ff0050;
	/* color: #00f2ea; */
}

ul.socials li a.tiktok:hover,
ul.socials li a.tiktok:focus {
	color: var(--primary-dark);
}

ul.socials li a.linkedin {
	color: #0a66c2;
}

ul.socials li a.linkedin:hover,
ul.socials li a.linkedin:focus {
	color: var(--primary-dark);
}

ul.socials li a.twitter {
	color: #1da1f2;
}

ul.socials li a.twitter:hover,
ul.socials li a.twitter:focus {
	color: var(--primary-dark);
}

ul.socials li a.x-twitter {
	color: #1da1f2;
}

ul.socials li a.x-twitter:hover,
ul.socials li a.x-twitter:focus {
	color: var(--primary-dark);
}

ul.socials li a.pinterest {
	color: #bd081c;
}

ul.socials li a.pinterest:hover,
ul.socials li a.pinterest:focus {
	color: var(--primary-dark);
}

ul.socials li a.youtube {
	color: #ff0000;
}

ul.socials li a.youtube:hover,
ul.socials li a.youtube:focus {
	color: var(--primary-dark);
}

ul.socials li a.google {
	color: #ff0000;
}

ul.socials li a.google:hover,
ul.socials li a.google:focus {
	color: var(--primary-dark);
}

/* [FORM] */
.formbox {
	position: relative;
	background-color: white;
	padding: 2rem;
	border-radius: 0;
	z-index: 1;
}

.formbox .formtitle {
	color: var(--primary-dark);
	font-size: 1.5rem;
	line-height: 1.5rem;
	font-weight: 700;
	margin: 0 0 1rem 0;
}

.formbox form .form-group {
    display: flex;
    flex-direction: column;
    align-content: center;
    align-items: flex-start;
    justify-content: flex-start;
	margin-bottom: 0.5rem;
}

.formbox form label,
.formbox form legend {
	display: flex;
	height: 100%;
	width: 100%;
	color: var(--primary);
	margin: 0;
	padding: 0.5rem 0;
	text-align: left;
	font-size: 1rem;
	line-height: 1rem;
	font-weight: 700;
}

.formbox form .form-group small {
	font-size: 0.85rem;
	font-weight: 700;
}

.formbox form .input-wrapper label {
	display: inline-block;
	width: auto;
	color: var(--primary);
	margin: 0 0 0 0.5rem;
	font-size: 1rem;
}

.formbox form .input-wrapper label small {
	font-size: 0.75rem;
	margin: 0 0 0 0.25rem;
	color: var(--primary);
}

.formbox form .input-wrapper .form-radio {
	transform: scale(1);
}

.formbox form input,
.formbox form textarea {
	background-color: #F0F0F0;
	border-color: #F0F0F0;
	font-size: 1.15rem;
	font-weight: 400;
	color: black;
	outline: none;
	padding: 1.25rem !important;
}

.formbox div[data-purpose="output"],
.formbox form input[type="file"] {
	flex-direction: row;
	align-items: center;
	background-color: white;
	border-color: var(--primary);
	font-size: 0.875em;
	font-weight: 400;
	color: var(--primary);
	outline: none;
	padding: 0.25rem 1.25rem !important;
}

.formbox form button[data-purpose="reset"] {
	font-size: 2rem;
	color: var(--danger);
}

.formbox form input[type="checkbox"] {
	padding: 0 !important;
	font-size: 0.5rem;
	width: auto !important;
}

.formbox form input[type="date"] {
	padding: 0.25rem 1.25rem !important;
	font-size: 1rem;
}

.formbox form select {
	background-color: #F0F0F0;
	border-color: #F0F0F0;
	display: block;
	width: 100%;
	font-size: 1rem;
	padding: 0.5rem;
}

.formbox form input:hover,
.formbox form input:focus,
.formbox form textarea:hover,
.formbox form select:hover,
.formbox form select:focus-visible {
	background-color: white;
	border-color: var(--success);
	box-shadow: none;
}

.formbox form .align-right {
	display: flex;
	flex-direction: row;
    justify-content: flex-end;
	width: 100%;
}

.formbox form button[type="submit"] {
	position: relative;
	display: flex;
	justify-content: center;
	width: auto;
	font-size: 1.15rem;
	font-weight: 700;
	border-color: var(--success);
	background-color: var(--success);
	color: white;
	padding: 0.5rem 2rem;
}

.formbox form button[type="submit"]:hover,
.formbox form button[type="submit"]:focus {
	border-color: var(--success);
	background-color: white;
	color: var(--success);
	box-shadow: none;
}

.formbox form ::placeholder {
	color: #6c757d;
	font-size: 0.875em;
}

.formbox form:-ms-input-placeholder {
	color: #6c757d;
	font-size: 0.875em;
}

.formbox form ::-ms-input-placeholder {
	color: #6c757d;
	font-size: 0.875em;
}

/* [DOWNLOADS] */
div[data-partial="download"] {
	position: relative;
	margin-bottom: 2rem;
}

div[data-partial="download"] a {
	display: block;
	margin-bottom: 0.25rem;
	text-align: left;
	background-color: transparent !important;
	border: 0 !important;
	padding: 0 !important;
	font-size: 1.15rem;
	color: var(--secondary);
}

div[data-partial="download"] a i {
	margin-right: 0.5rem;
	color: var(--tertiary) !important;
	font-size: 1.5rem !important;
}

div[data-partial="download"] a:hover,
div[data-partial="download"] a:focus {
	text-decoration: none;
	color: var(--tertiary);
	outline: none;
	box-shadow: none;
}

div[data-partial="download"] a:hover i,
div[data-partial="download"] a:focus i {
	color: var(--secondary);
}

/* [MODAL] */
.modal-header {
	background-color: var(--primary) !important;
	font-family: var(--font-titles);
	font-size: 1.25rem;
	font-weight: 700;
	color: white;
}

.modal-header .close {
    color: white;
}

/* [FOOTER] */
footer.nav-footer {
	position: relative;
}

html[data-logged="true"] footer.nav-footer {
	margin-bottom: 0;
}

footer.nav-footer .top {
	position: relative;
	font-size: 1rem;
	color: var(--tertiary);
	background-color: var(--primary-dark);
	padding: 3rem 0;
}

footer.nav-footer .top .title {
	font-family: var(--font-family-heading);
	font-size: 1.5rem;
	line-height: 1.5rem;
	font-weight: 700;
	color: var(--white);
	margin: 0;
}

footer.nav-footer .top .title p {
	margin: 0;
}

footer.nav-footer .top ul.navlist-nav {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
}

footer.nav-footer .top ul.navlist-nav li {
	margin-bottom: 1rem;
}

footer.nav-footer .top ul.navlist-nav li a {
	position: relative;
	display: inline;
	padding: 0;
	text-decoration: none;
	color: var(--white);
}

footer.nav-footer .top ul.navlist-nav li a:hover,
footer.nav-footer .top ul.navlist-nav li a:focus {
	color: var(--white);
}

footer.nav-footer .top ul.navlist-nav li a:before {
	content: "";
	position: absolute;
	left: 0;
	bottom: -4px;
	width: 0%;
	height: 1px;
	background: var(--white);
	transition: all 0.4s ease;
}

footer.nav-footer .top ul.navlist-nav li a:hover:before,
footer.nav-footer .top ul.navlist-nav li a:focus:before {
	width: 100%;
}

footer.nav-footer ul.contact li i {
	color: var(--white);
	font-size: 1.25rem;
}

footer.nav-footer ul.contact li a {
	color: var(--white);
	hyphens: auto;
}

footer.nav-footer ul.contact li a:before {
	background: var(--white);
}

footer.nav-footer ul.contact li a:hover,
footer.nav-footer ul.contact li a:focus {
	color: var(--white);
}

footer.nav-footer ul.socials li a.facebook {
	color: var(--white);
}

footer.nav-footer ul.socials li a.facebook:hover,
footer.nav-footer ul.socials li a.facebook:focus {
	color: #1877f2;
}

footer.nav-footer ul.socials li a.instagram {
	color: var(--white);
}

footer.nav-footer ul.socials li a.instagram:hover,
footer.nav-footer ul.socials li a.instagram:focus {
	color: #c32aa3;
}

footer.nav-footer ul.socials li a.tiktok {
	color: var(--white);
}

footer.nav-footer ul.socials li a.tiktok:hover,
footer.nav-footer ul.socials li a.tiktok:focus {
	color: #ff0050;
	/* color: #00f2ea; */
}

footer.nav-footer ul.socials li a.linkedin {
	color: var(--white);

}

footer.nav-footer ul.socials li a.linkedin:hover,
footer.nav-footer ul.socials li a.linkedin:focus {
	color: #0a66c2;
}

footer.nav-footer ul.socials li a.twitter,
footer.nav-footer ul.socials li a.x-twitter {
	color: var(--white);
}

footer.nav-footer ul.socials li a.twitter:hover,
footer.nav-footer ul.socials li a.twitter:focus,
footer.nav-footer ul.socials li a.x-twitter:hover,
footer.nav-footer ul.socials li a.x-twitter:focus {
	color: #1da1f2;
}

footer.nav-footer ul.socials li a.pinterest {
	color: var(--white);
}

footer.nav-footer ul.socials li a.pinterest:hover,
footer.nav-footer ul.socials li a.pinterest:focus {
	color: #bd081c;
}

footer.nav-footer ul.socials li a.youtube {
	color: var(--white);
}

footer.nav-footer ul.socials li a.youtube:hover,
footer.nav-footer ul.socials li a.youtube:focus {
	color: #ff0000;
}

ul.socials li a.google {
	color: var(--white);
}

ul.socials li a.google:hover,
ul.socials li a.google:focus {
	color: #ff0000;
}

footer.nav-footer .bottom {
	font-size: 1rem;
	background-color: var(--white);
}

footer.nav-footer .bottom .flex-row {
	flex-direction: column !important;
}

footer.nav-footer .bottom .nclogo {
	font-size: 0.75rem;
}

footer.nav-footer .bottom a {
	color: var(--primary-dark);
	text-decoration: none;
}

footer.nav-footer .bottom a.nclogo {
	font-size: 1rem;
	color: var(--primary-dark);
}

footer.nav-footer .bottom a:hover,
footer.nav-footer .bottom a:focus {
	background-color: var(--primary-bg);
	color: var(--white);
}

@media only screen and (min-width: 768px) {
	/* Medium (md) */
	footer.nav-footer {
		margin-bottom: 0;
	}
	footer.nav-footer .bottom .flex-row {
		flex-direction: row !important;
	}
}

/*
	Stevie's SUPER gestructureerde CSS
	           .=.,
              ;c =\
            __|  _/
          .'-'-._/-'-._
         /..   ____    \
        /'[Super Stevie]) \
       (  /  \--\_>/-/ '._ )
        \-;_/\__;__/ _/ _/
         '._}|==o==\{_\/
          /  /-._.--\  \_
         // /   /|   \ \ \
        / | |   | \;  |  \ \
       / /  | :/   \: \   \_\
      /  |  /.'|   /: |    \ \
      |  |  |--| . |--|     \_\
      / _/   \ | : | /___--._) \
     |_(---'-| >-'-| |       '-'
            /_/     \_\
*/



/* Cars blog */

.blog-template-cars ol.breadcrumb {
	display: none;
}

.blog-template-cars .blog-content p.blog-field-summary {
	text-wrap: pretty;
	line-height: 2;
}

.blog-template-cars a.blog-item-link {
	color: inherit;
}

@media screen and (min-width: 992px) {
	.blog-template-cars.blog-item aside {
		position: sticky;
		top: 0;
		height: 100vh;
		padding-top: calc(var(--navigation-height) + 1em);

		display: flex;
		flex-direction: column;
		justify-content: center;

		overflow-y: auto;
	}
}

/* Fields */

.blog-template-cars .blog-field {
	margin-bottom: 0.25rem;
}
.blog-template-cars .blog-field-label {
	font-weight: 300;
}
.blog-template-cars .blog-field-value {
	font-weight: 500;
}

/* Kenteken */

.blog-template-cars .blog-field-kenteken > .blog-field-value {
	display: flex;
	flex-wrap: nowrap;
	position: relative;

	--border-radius: 3px;
}

.blog-template-cars
	.blog-field-kenteken
	> .blog-field-value
	.blog-field-kenteken-prepend {
	position: relative;
	width: 1.5em;
	padding-top: 0.25rem;
	padding-bottom: 0.25rem;
	background-color: #039;
	text-align: center;
	border-top-left-radius: var(--border-radius);
	border-bottom-left-radius: var(--border-radius);
}
.blog-template-cars
	.blog-field-kenteken
	> .blog-field-value
	.blog-field-kenteken-country {
	position: absolute;
	padding: 0;
	left: 0;
	width: 100%;
	bottom: 0.125em;
	font-size: 0.5em;
	background-color: transparent;
	border-color: transparent;
	color: white;
	text-transform: uppercase;
	pointer-events: none;
	user-select: none;
}
.blog-template-cars
	.blog-field-kenteken
	> .blog-field-value
	.blog-field-kenteken-prepend::after {
	content: "";
	display: inline-block;
	background-image: url(../dynamic/proxy/images/flags/1x1/eu.svg);
	background-repeat: no-repeat;
	vertical-align: top;
	width: 1em;
	aspect-ratio: 1/1;
}
.blog-template-cars
	.blog-field-kenteken
	> .blog-field-value
	.blog-field-kenteken-text {
	line-height: 2;
	padding-right: 1.125em;
	padding-left: 1em;
	border-color: black;
	border-top-right-radius: var(--border-radius);
	border-bottom-right-radius: var(--border-radius);
	background-color: #ffb000;
	text-align: center;
	text-transform: uppercase;
}
/* Energie label */

.blog-template-cars .blog-field-energielabel > .blog-field-value {
	position: relative;
	color: white;
}

.blog-template-cars .blog-field-energielabel > .blog-field-value::before,
.blog-template-cars .blog-field-energielabel > .blog-field-value::after {
	content: "";
	position: absolute;
	z-index: -1;

	background-color: #ee151e;
}

.blog-template-cars .blog-field-energielabel > .blog-field-value::before {
	top: 0;
	left: 0.5rem;
	bottom: 0;
	width: 3em;
}

.blog-template-cars .blog-field-energielabel > .blog-field-value::after {
	top: 0.25rem;
	left: calc(0.5rem + 2.25rem);
	bottom: 0.25rem;
	aspect-ratio: 1/1;

	transform: rotate(-45deg);
}

.blog-template-cars
	.blog-field-energielabel[data-value="c"]
	> .blog-field-value,
.blog-template-cars
	.blog-field-energielabel[data-value="d"]
	> .blog-field-value,
.blog-template-cars
	.blog-field-energielabel[data-value="e"]
	> .blog-field-value {
	color: black;
}

.blog-template-cars
	.blog-field-energielabel[data-value="a"]
	> .blog-field-value::before,
.blog-template-cars
	.blog-field-energielabel[data-value="a"]
	> .blog-field-value::after {
	background-color: #00a851;
}

.blog-template-cars
	.blog-field-energielabel[data-value="b"]
	> .blog-field-value::before,
.blog-template-cars
	.blog-field-energielabel[data-value="b"]
	> .blog-field-value::after {
	background-color: #4eba48;
}

.blog-template-cars
	.blog-field-energielabel[data-value="c"]
	> .blog-field-value::before,
.blog-template-cars
	.blog-field-energielabel[data-value="c"]
	> .blog-field-value::after {
	background-color: #c1d82d;
}

.blog-template-cars
	.blog-field-energielabel[data-value="d"]
	> .blog-field-value::before,
.blog-template-cars
	.blog-field-energielabel[data-value="d"]
	> .blog-field-value::after {
	background-color: #fef201;
}

.blog-template-cars
	.blog-field-energielabel[data-value="e"]
	> .blog-field-value::before,
.blog-template-cars
	.blog-field-energielabel[data-value="e"]
	> .blog-field-value::after {
	background-color: #fcbb0b;
}

.blog-template-cars
	.blog-field-energielabel[data-value="f"]
	> .blog-field-value::before,
.blog-template-cars
	.blog-field-energielabel[data-value="f"]
	> .blog-field-value::after {
	background-color: #f4701a;
}

/* Opties */
.blog-template-cars .blog-field-opties {
	font-weight: 300;
}

.blog-template-cars .btn-cta{
	display: block;
    width: 100%;
}

.blog-template-cars .blog-related .btn-secondary:not(.btn-admin), .blog-template-cars .btn-link{
	display: inline-block;
}

@media screen and (min-width: 576px) {
	.blog-template-cars .blog-field-opties {
		columns: 2;
	}
}