/* *
* Template Name: Laadpaalkompas
* Template URL: https://brandxpansion.com
* Updated: Aug 16 2024 with Bootstrap v5.3.3
* Author: Brand Xpansion
* License: https://brandxpansion.com/license/ */
/* --------------------------------------------------------------
# Font & Color Variables
# Help: https://brandxpansion.com/color-system/
-------------------------------------------------------------- */
/* Fonts */
:root {
    --default-font: "Parkinsans", sans-serif, "Roboto",  system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    --heading-font: "Parkinsans", sans-serif;
    --nav-font: "Parkinsans", sans-serif;
}

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root {
    --background-color: #ffffff;

    /* Background color for the entire website, including individual sections */
    --default-color: #212529;

    /* Default color used for the majority of the text content across the entire website */
    --heading-color: #101f0c;

    /* Color for headings, subheadings and title throughout the website */
    --accent-color: #004803;

    /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
    --surface-color: #ffffff;

    /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
    --contrast-color: #ffffff;

    /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
}

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
    --nav-color: #212529;

    /* The default color of the main navmenu links */
    --nav-hover-color: #004803;

    /* Applied to main navmenu links when they are hovered over or active */
    --nav-mobile-background-color: #ffffff;

    /* Used as the background color for mobile navigation menu */
    --nav-dropdown-background-color: #ffffff;

    /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
    --nav-dropdown-color: #212529;

    /* Used for navigation links of the dropdown items in the navigation menu. */
    --nav-dropdown-hover-color: #004803;

    /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */
.light-background {
    --background-color: #f1f6f1;
    --surface-color: #ffffff;
}

.dark-background {
    --background-color: #060606;
    --default-color: #ffffff;
    --heading-color: #ffffff;
    --surface-color: #252525;
    --contrast-color: #ffffff;
}

/* Smooth scroll */
:root {
    scroll-behavior: smooth;
}

/* --------------------------------------------------------------
# General Styling & Shared Classes
-------------------------------------------------------------- */
body,
html {
    color: var(--default-color);
    background-color: var(--background-color);
    font-family: var(--default-font)!important;
    text-transform: lowercase;
    overflow-x: hidden;
}

a {
    text-decoration: none!important;
    transition: 0.3s;
}

a:hover {
    color: color-mix(in srgb, var(--accent-color), transparent 25%);
    text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: #004803;
    font-family: var(--heading-font);
}

/* The side menu */
.side-menu {
    height: 100%;
    width: 0;
    position: fixed;
    z-index: 1;
    top: 0;
    left: 0;
    background-color: #faf4e4;
    overflow-x: hidden;
    transition: 0.5s;
    padding-top: 60px;
}

/* Menu links */
.side-menu a {
    padding: 0px 24px 8px 32px;
    text-decoration: none;
    font-size: 18px;
    color: #818181;
    display: block;
    transition: 0.3s;
}

.side-menu a:hover {
    color: #0000001c;
}

/* Close button */
.side-menu .close-btn {
    position: absolute;
    top: 35;
    right: 5px;
    font-size: 36px;
    margin-left: 50px;
}

/* Open button */
.open-btn {
    font-size: 40px;
    cursor: pointer;
    color: #111;
}

/* --------------------------------------------------------------
# Global Footer
-------------------------------------------------------------- */
.footer {
    color: var(--default-color);
    background-color: var(--background-color);
    font-size: 14px;
    padding: 40px 0;
    position: relative;
}

.footer .copyright p {
    margin-bottom: 0;
}

.footer .social-links {
    margin-top: 20px;
}

.footer .social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 50%);
    font-size: 16px;
    color: color-mix(in srgb, var(--default-color), transparent 50%);
    margin: 0 5px;
    transition: 0.3s;
}

.footer .social-links a:hover {
    color: var(--accent-color);
    border-color: var(--accent-color);
}

.footer .credits {
    margin-top: 10px;
    font-size: 13px;
    text-align: center;
}

/* --------------------------------------------------------------
# Preloader
-------------------------------------------------------------- */
#preloader {
    position: fixed;
    inset: 0;
    z-index: 9999;
    overflow: hidden;
    background-color: var(--background-color);
    transition: all 0.6s ease-out;
}

#preloader:before {
    content: "";
    position: fixed;
    top: calc(50% - 30px);
    left: calc(50% - 30px);
    border: 6px solid var(--accent-color);
    border-top-color: color-mix(in srgb, var(--accent-color), transparent 90%);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    animation: animate-preloader 1s linear infinite;
}

@keyframes animate-preloader {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* --------------------------------------------------------------
# Global Page Titles & Breadcrumbs
-------------------------------------------------------------- */
.page-title {
    color: var(--default-color);
    background-color: var(--background-color);
    position: relative;
}

.page-title .heading {
    padding: 80px 0;
    border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.page-title .heading h1 {
    font-size: 38px;
    font-weight: 700;
}

.page-title nav {
    background-color: color-mix(in srgb, var(--default-color), transparent 95%);
    padding: 20px 0;
}

.page-title nav ol {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    margin: 0;
    font-size: 16px;
    font-weight: 600;
}

.page-title nav ol li+li {
    padding-left: 10px;
}

.page-title nav ol li+li::before {
    content: "/";
    display: inline-block;
    padding-right: 10px;
    color: color-mix(in srgb, var(--default-color), transparent 70%);
}

/* --------------------------------------------------------------
# Global Sections
-------------------------------------------------------------- */
section,
.section {
    color: var(--default-color);
    padding: 40px 0;
    scroll-margin-top: 90px;
    overflow: clip;
    z-index: 1;
}

@media (max-width: 1199px) {
    section,
    .section {
        scroll-margin-top: 66px;
    }
}

/* --------------------------------------------------------------
# Global Section Titles
-------------------------------------------------------------- */
.section-title {
    text-align: center;
    position: relative;
}

.section-title h2 {
    font-size: 13px;
    letter-spacing: 1px;
    font-weight: 700;
    padding: 8px 20px;
    margin: 0;
    background: color-mix(in srgb, var(--accent-color), transparent 100%);
    color: var(--accent-color);
    display: inline-block;
    text-transform: uppercase;
    border-radius: 50px;
    font-family: var(--default-font);
}

h2,
.h2 {
    font-size: 1.2rem!important;
}

h1,
.h1 {
    font-size: 1.3rem!important;
}

h3,
.h3 {
    font-size: 1rem!important;
}

.section-title div {
    color: var(--heading-color);
    margin: 10px 0 0 0;
    font-size: 32px;
    font-weight: 700;
    font-family: var(--heading-font);
}

.section-title div .description-title {
    color: var(--accent-color);
}

/* --------------------------------------------------------------
# Starter Section Section
-------------------------------------------------------------- */
.starter-section {
    /* Add your styles here */
}

.nav-link {
    color: #004803;
}

.tekstshadow {
    text-shadow: 2px 4px 5px rgba(0, 0, 0, 0.5);
}

.tekstshadow2 {
    text-shadow: 2px 4px 5px rgb(255, 255, 255);
}

@media (min-width: 992px) {
    div.CTA {
        position: fixed;
        right: 10px;
        bottom: 110px;
    }
}

.form-field.label {
    padding: 50px;
}

/* Formulierstijl */
#wizard-form {
    max-width: 600px;
    margin: auto;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}

/* Samenvatting */
#summary h3 {
    font-size: 1.2em;
    margin-bottom: 10px;
}

#summary-list {
    list-style: none;
    padding: 0;
    font-size: 0.95em;
    color: #555;
}

#summary-list li {
    margin-bottom: 5px;
    font-family: var(--default-font);
}

/* Invoervelden */
input[type="text"],
input[type="email"],
input[type="tel"],
textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1em;
}

.step {
    display: none;

    /* Completely hides the element */
    opacity: 0;

    /* Ensures a smooth fade-out effect */
    height: 0;

    /* Ensures it doesn't take up space */
    overflow: hidden;

    /* Prevents content from spilling out */
    transition: opacity 0.5s ease, height 0.5s ease;

    /* Smooth transitions */
}

.step.active {
    display: block;

    /* Makes the active step visible */
    opacity: 1;

    /* Fully visible */
    height: auto;

    /* Adjusts height to content */
}

@media (max-width:768px) {
    .blokpositie {
        z-index: 2;
        cursor: pointer;
        top: 80px;
    }
}

.colordivleft {
    height: 400px;
    position: absolute;
    left: 0;
    transform-origin: right center;

    /* Ensures the animation starts from the left */
    width: 0;

    /* Initially hidden */
    z-index: 0;
    background-color: #f7ebe8;
    margin-top: -380px;
    riight: auto;
    visibility: hidden;
    transition: width 0.5s ease, visibility 0s linear 0.5s;

    /* Smooth animation */
}

.colordivleft.visible {
    width: 50%;

    /* Full width when visible */
    visibility: visible;

    /* Make it visible */
    transition: width 0.5s ease, visibility 0s linear 0s;

    /* Immediate visibility */
}

.colordivright {
    height: 400px;
    position: absolute;
    right: 0;
    transform-origin: left center;

    /* Ensures the animation starts from the left */
    width: 0;

    /* Initially hidden */
    z-index: 0;
    background-color: #faf4e4;
    margin-top: -380px;
    left: auto;
    visibility: hidden;
    transition: width 0.5s ease, visibility 0s linear 0.5s;

    /* Smooth animation */
}

.colordivright.visible {
    width: 50%;

    /* Full width when visible */
    visibility: visible;

    /* Make it visible */
    transition: width 0.5s ease, visibility 0s linear 0s;

    /* Immediate visibility */
}

@media (max-width:768px) {
    .hidemobile {
        visibility: collapse;
    }
}

.colorlogoleft {
    color: #6d6d6d;
}

div.container.sitename {
    width: 400px;
}

.colorgeel {
    color: #d7c4bf;
}

footer {
    background-color: #faf4e4;
}

.keuzeknop {
    margin-bottom: 10px;
}

.leftimage {
    position: absolute;
    min-width: 350px;
    left: -20%;
    top: 0px;
}

.rightimage {
    min-width: 300px;
}

.fiets-image {
    transition: transform 0.5s ease, opacity 0.5s ease;
    margin-left: auto;
}

#fietslaadpaal:hover .fiets-image {
    opacity: 0;

    /* De afbeelding verdwijnt langzaam */
    transform: scale(1.1);

    /* Optioneel: je kunt ook een zoom-effect toevoegen */
}

/* Dit is de hover afbeelding die zichtbaar wordt */
#fietslaadpaal:hover .fiets-image:hover {
    opacity: 1;

    /* De nieuwe afbeelding wordt weer zichtbaar */
}

.auto-image {
    transition: transform 0.5s ease, opacity 0.5s ease;
}

#autolaadpaal:hover .auto-image {
    opacity: 0;

    /* De afbeelding verdwijnt langzaam */
    transform: scale(1.1);

    /* Optioneel: je kunt ook een zoom-effect toevoegen */
}

/* Dit is de hover afbeelding die zichtbaar wordt */
#autolaadpaal:hover .auto-image:hover {
    opacity: 1;

    /* De nieuwe afbeelding wordt weer zichtbaar */
}

.thuis-image {
    transition: transform 0.5s ease, opacity 0.5s ease;
    margin-left: auto;
}

#thuis:hover .thuis-image {
    opacity: 0;

    /* De afbeelding verdwijnt langzaam */
    transform: scale(1.1);

    /* Optioneel: je kunt ook een zoom-effect toevoegen */
}

/* Dit is de hover afbeelding die zichtbaar wordt */
#thuis:hover .thuis-image:hover {
    opacity: 1;

    /* De nieuwe afbeelding wordt weer zichtbaar */
}

.thuis-image2 {
    transition: transform 0.5s ease, opacity 0.5s ease;
    margin-left: auto;
}

#thuis2:hover .thuis-image2 {
    opacity: 0;

    /* De afbeelding verdwijnt langzaam */
    transform: scale(1.1);

    /* Optioneel: je kunt ook een zoom-effect toevoegen */
}

/* Dit is de hover afbeelding die zichtbaar wordt */
#thuis2:hover .thuis-image2:hover {
    opacity: 1;

    /* De nieuwe afbeelding wordt weer zichtbaar */
}

.bedrijf-image {
    transition: transform 0.5s ease, opacity 0.5s ease;
}

#bedrijf:hover .bedrijf-image {
    opacity: 0;

    /* De afbeelding verdwijnt langzaam */
    transform: scale(1.1);

    /* Optioneel: je kunt ook een zoom-effect toevoegen */
}

/* Dit is de hover afbeelding die zichtbaar wordt */
#bedrijf:hover .bedrijf-image:hover {
    opacity: 1;

    /* De nieuwe afbeelding wordt weer zichtbaar */
}

.bedrijf-image2 {
    transition: transform 0.5s ease, opacity 0.5s ease;
}

#bedrijf2:hover .bedrijf-image2 {
    opacity: 0;

    /* De afbeelding verdwijnt langzaam */
    transform: scale(1.1);

    /* Optioneel: je kunt ook een zoom-effect toevoegen */
}

/* Dit is de hover afbeelding die zichtbaar wordt */
#bedrijf2:hover .bedrijf-image2:hover {
    opacity: 1;

    /* De nieuwe afbeelding wordt weer zichtbaar */
}

.wand-image {
    transition: transform 0.5s ease, opacity 0.5s ease;
    margin-left: auto;
}

#wand:hover .wand-image {
    opacity: 0;

    /* De afbeelding verdwijnt langzaam */
    transform: scale(1.1);

    /* Optioneel: je kunt ook een zoom-effect toevoegen */
}

/* Dit is de hover afbeelding die zichtbaar wordt */
#wand:hover .wand-image:hover {
    opacity: 1;

    /* De nieuwe afbeelding wordt weer zichtbaar */
}

.paal-image {
    transition: transform 0.5s ease, opacity 0.5s ease;
}

#paal:hover .paal-image {
    opacity: 0;

    /* De afbeelding verdwijnt langzaam */
    transform: scale(1.1);

    /* Optioneel: je kunt ook een zoom-effect toevoegen */
}

/* Dit is de hover afbeelding die zichtbaar wordt */
#paal:hover .paal-image:hover {
    opacity: 1;

    /* De nieuwe afbeelding wordt weer zichtbaar */
}

.wand-image2 {
    transition: transform 0.5s ease, opacity 0.5s ease;
    margin-left: auto;
}

#wand2:hover .wand-image2 {
    opacity: 0;

    /* De afbeelding verdwijnt langzaam */
    transform: scale(1.1);

    /* Optioneel: je kunt ook een zoom-effect toevoegen */
}

/* Dit is de hover afbeelding die zichtbaar wordt */
#wand2:hover .wand-image2:hover {
    opacity: 1;

    /* De nieuwe afbeelding wordt weer zichtbaar */
}

.paal-image2 {
    transition: transform 0.5s ease, opacity 0.5s ease;
}

#paal2:hover .paal-image2 {
    opacity: 0;

    /* De afbeelding verdwijnt langzaam */
    transform: scale(1.1);

    /* Optioneel: je kunt ook een zoom-effect toevoegen */
}

/* Dit is de hover afbeelding die zichtbaar wordt */
#paal2:hover .paal-image2:hover {
    opacity: 1;

    /* De nieuwe afbeelding wordt weer zichtbaar */
}

.aantal-image {
    transition: transform 0.5s ease, opacity 0.5s ease;
    margin-left: auto;
}

#aantal:hover .aantal-image {
    opacity: 0;

    /* De afbeelding verdwijnt langzaam */
    transform: scale(1.1);

    /* Optioneel: je kunt ook een zoom-effect toevoegen */
}

/* Dit is de hover afbeelding die zichtbaar wordt */
#aantal:hover .aantal-image:hover {
    opacity: 1;

    /* De nieuwe afbeelding wordt weer zichtbaar */
}

.aantal-image2 {
    transition: transform 0.5s ease, opacity 0.5s ease;
    margin-left: auto;
}

#aantal2:hover .aantal-image2 {
    opacity: 0;

    /* De afbeelding verdwijnt langzaam */
    transform: scale(1.1);

    /* Optioneel: je kunt ook een zoom-effect toevoegen */
}

/* Dit is de hover afbeelding die zichtbaar wordt */
#aantal2:hover .aantal-image2:hover {
    opacity: 1;

    /* De nieuwe afbeelding wordt weer zichtbaar */
}

hr.line2 {
    border-color: #6e6e6e65;
    border-width: 2px;
    width: 100%;
    margin-left: -10px;
    border-radius: 25px;
}

.line3 {
    border-color: #6e6e6e;
    border-width: 2px;
    position: absolute;
    width: 300px;
    margin-top: -5px;
}

.line4 {
    border-color: #6e6e6e;
    border-width: 2px;
    position: absolute;
    width: 300px;
    margin-top: -5px;
    transform: rotate(-2deg);
}

.line5 {
    border-color: #6e6e6e;
    border-width: 2px;
    position: absolute;
    width: 300px;
    margin-top: -5px;
}

.line6 {
    border-color: #6e6e6e;
    border-width: 2px;
    position: absolute;
    width: 300px;
    margin-top: -5px;
    transform: rotate(-2deg);
}

.line7 {
    border-color: #6e6e6e;
    border-width: 2px;
    position: absolute;
    width: 200px;
    right: 20px;
    margin-top: -5px;
}

.line8 {
    border-color: #6e6e6e;
    border-width: 2px;
    position: absolute;
    width: 200px;
    right: 0px;
    margin-top: -5px;
    transform: rotate(-2deg);
}

.line9 {
    border-color: #6e6e6e;
    border-width: 2px;
    position: absolute;
    width: 200px;
    left: 20px;
    margin-top: -5px;
}

.line10 {
    border-color: #6e6e6e;
    border-width: 2px;
    position: absolute;
    width: 200px;
    left: 0px;
    margin-top: -5px;
    transform: rotate(-2deg);
}

.row.gy-2 {
    width: 100vw;
    margin-left: -150px !important;
}

.fietsbutton {
    margin-bottom: 20px;
    max-width: 170px;
    margin-right: 10px;
}

@media (min-width:1400px) and (max-width:1599px) {
    .blokpositie {
        margin-left: -30px !important;
        position: absolute;
        bottom: -250px !important;
    }
}

@media (max-width:768px) {
    .image-container {
        position: relative;
        display: inline-block;
        left: 20px;
    }
}

.hover-circle {
    position: absolute;
    top: 0;
    left: 0;
    width: 100px!important;
    height: 100px;
    background-color: black;
    color: white;
    font-size: 16px;
    text-align: center;
    line-height: 100px;
    border-radius: 50%;
    transform: translate(-50%, -50%) scale(0);
    transition: transform 0.3s ease, opacity 0.3s ease;
    pointer-events: none;
    opacity: 0;
    z-index: 999;
}

.image-container2 {
    position: relative;
    display: inline-block;
}

.hover-circle2 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100px!important;
    height: 100px;
    background-color: black;
    color: white;
    font-size: 16px;
    text-align: center;
    line-height: 100px;
    border-radius: 50%;
    transform: translate(-50%, -50%) scale(0);
    transition: transform 0.3s ease, opacity 0.3s ease;
    pointer-events: none;
    opacity: 0;
    z-index: 999;
}

@media (max-width:768px) {
    .image-container3 {
        position: relative;
        display: inline-block;
        left: 20px;
    }
}

.hover-circle3 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100px!important;
    height: 100px;
    background-color: black;
    color: white;
    font-size: 16px;
    text-align: center;
    line-height: 100px;
    border-radius: 50%;
    transform: translate(-50%, -50%) scale(0);
    transition: transform 0.3s ease, opacity 0.3s ease;
    pointer-events: none;
    opacity: 0;
    z-index: 999;
}

.image-container4 {
    position: relative;
    display: inline-block;
}

.hover-circle4 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100px!important;
    height: 100px;
    background-color: black;
    color: white;
    font-size: 16px;
    text-align: center;
    line-height: 100px;
    border-radius: 50%;
    transform: translate(-50%, -50%) scale(0);
    transition: transform 0.3s ease, opacity 0.3s ease;
    pointer-events: none;
    opacity: 0;
    z-index: 999;
}

@media (max-width:768px) {
    .image-container5 {
        position: relative;
        display: inline-block;
        left: 20px;
    }
}

.hover-circle5 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100px!important;
    height: 100px;
    background-color: black;
    color: white;
    font-size: 16px;
    text-align: center;
    line-height: 100px;
    border-radius: 50%;
    transform: translate(-50%, -50%) scale(0);
    transition: transform 0.3s ease, opacity 0.3s ease;
    pointer-events: none;
    opacity: 0;
    z-index: 999;
}

.image-container6 {
    position: relative;
    display: inline-block;
}

.hover-circle6 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100px!important;
    height: 100px;
    background-color: black;
    color: white;
    font-size: 16px;
    text-align: center;
    line-height: 100px;
    border-radius: 50%;
    transform: translate(-50%, -50%) scale(0);
    transition: transform 0.3s ease, opacity 0.3s ease;
    pointer-events: none;
    opacity: 0;
    z-index: 999;
}

.image-container7 {
    position: relative;
    display: inline-block;
}

.hover-circle7 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100px!important;
    height: 100px;
    background-color: black;
    color: white;
    font-size: 16px;
    text-align: center;
    line-height: 100px;
    border-radius: 50%;
    transform: translate(-50%, -50%) scale(0);
    transition: transform 0.3s ease, opacity 0.3s ease;
    pointer-events: none;
    opacity: 0;
    z-index: 999;
}

.image-container8 {
    position: relative;
    display: inline-block;
}

.hover-circle8 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100px!important;
    height: 100px;
    background-color: black;
    color: white;
    font-size: 16px;
    text-align: center;
    line-height: 100px;
    border-radius: 50%;
    transform: translate(-50%, -50%) scale(0);
    transition: transform 0.3s ease, opacity 0.3s ease;
    pointer-events: none;
    opacity: 0;
    z-index: 999;
}

.image-container9 {
    position: relative;
    display: inline-block;
}

.hover-circle9 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100px!important;
    height: 100px;
    background-color: black;
    color: white;
    font-size: 16px;
    text-align: center;
    line-height: 100px;
    border-radius: 50%;
    transform: translate(-50%, -50%) scale(0);
    transition: transform 0.3s ease, opacity 0.3s ease;
    pointer-events: none;
    opacity: 0;
    z-index: 999;
}

.image-container10 {
    position: relative;
    display: inline-block;
}

.hover-circle10 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100px!important;
    height: 100px;
    background-color: black;
    color: white;
    font-size: 16px;
    text-align: center;
    line-height: 100px;
    border-radius: 50%;
    transform: translate(-50%, -50%) scale(0);
    transition: transform 0.3s ease, opacity 0.3s ease;
    pointer-events: none;
    opacity: 0;
    z-index: 999;
}

@media (min-width:992px) {
    .blokpositie {
        position: absolute;
        bottom: -100px;
    }
}

@media (min-width: 1200px) {
    .blokpositie {
        position: absolute;
        bottom: -150px;
    }
}

@media (min-width:1600px) {
    .blokpositie {
        position: absolute;
        bottom: -300px;
    }
}

marginbtn {
    margin-bottom: 15px;
}

.marginbtn {
    margin-bottom: 10px;
}

.bgstickycolor {
    background-color: #f8f9fa !important;
    transition: background-color 0.3s ease;
}

@media (max-width:640px) {
    hr.line4 {
        width: 100px;
    }
}

@media (max-width:640px) {
    hr.line3 {
        width: 100px;
    }
}

@media (max-width:640px) {
    .blokpositie {
        position: absolute;
        top: 200px;
        left: -20px;
    }
}

@media (max-width:768px) {
    .mobsize {
        min-height: 550px;
    }

    .image-container {
        position: absolute;
        left: 20;
    }

    .image-container2 {
        position: absolute;
        right: 30px;
    }

    .image-container3 {
        position: absolute;
        left: 20;
    }

    .image-container4 {
        position: absolute;
        right: 30px;
    }

    .image-container5 {
        position: absolute;
        left: 20;
    }

    .image-container6 {
        position: absolute;
        right: 30px;
    }

    .image-container8 {
        position: absolute;
        left: 20;
    }

    .image-container9 {
        position: absolute;
        left: 20;
    }

    .image-container7 {
        position: absolute;
        right: 30px;
    }

    .blokpositie {
        position: absolute;
        top: 450px;
    }

    .line5,
    .line3,
    .line4,
    .line6,
    .line7,
    .line8,
    .line9,
    .line10 {
        width: 100px;
    }

    #aantal {
    }
}

a {
    text-decoration: none;
}

.shoplogo {
    max-width: 200px;
    height: auto;
    display: block;
    margin: 0 auto;
}

.verschuiving {
    margin-top: 4px;
    margin-right: 5px;
}

.zeiksnor {
    transform: rotate(90deg);
    margin-left: 10px;
    margin-top: 10px;
}

.zeiksnor2 {
    margin-right: 10px;
    margin-top: 10px;
}

.borderleftradius {
    padding-top: 5px !important;
    padding-right: 5px !important;
    font-weight: lighter !important;
    border-radius: 15px !important;
}

.randje {
    outline: none !important;
    border: 0px!important;
}

.back {
    cursor: pointer;
}

.positie {
    margin-top: 20px;
}

@media (min-width:992px) {
    .top-margin {
        margin-top: -119px;
        margin-bottom: -58px;
    }
}

@keyframes slides {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-100%);
    }
}

.logos {
    overflow: hidden;
    margin-top: -10px;
    margin-bottom: 30px;
    white-space: nowrap;
    position: relative;
    opacity: 50%;
}

.logos:before,
.logos:after {
    position: absolute;
    top: 0;
    content: '';
    width: 50px;
    height: 100%;
    z-index: 2;
}

.logos:before {
    left: 0;
    background: linear-gradient(to right, rgba(255,255,255,0), rgb(248 249 250));
}

.logos:after {
    right: 0;
    background: linear-gradient(to right, rgba(255,255,255,0), rgb(248 249 250));
}

.logo_items {
    display: inline-block;
    animation: 100s slides infinite linear;
}

.logo_items img {
    height: 25px;
}

li {
    font-family: 'Parkinsans', sans-serif;
}

address {
    font-family: 'Parkinsans', sans-serif;
}

.bg-light2 {
    background-color: #faf4e4 !important;
}

.link {
    text-decoration: none;
}

.py-sm-10 {
    padding: -5px !important;
}

div#offerteModal.modal {
    z-index: 1021 !important;
}

.breadcrumb {
    color: #858585 !important;
}

.breadcrumb-item a {
    color: #bdbdbd;
    font-size: 10px;
}

.terugkleur {
    color: black;
}

.unique-img-wrapper {
    position: relative;
}

.unique-img-wrapper img {
    display: block;
    width: 80%;
    margin-left: auto;
    margin-right: auto;
}

.unique-img-hover {
    position: absolute;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
    margin-left: auto;
    margin-right: auto;
    top: 0;
}

.unique-img-wrapper:hover .unique-img-hover {
    opacity: 1;
}

.container.content-space-1.content-space-lg-4.top-margin {
    margin-bottom: -150px;
}

.bgcolorgeel {
    background-color: #fefdee;
}

.offerteknopmobiel {
    margin-top: 10px;
    float: right;
    margin-right: 15px;
    margin-bottom: 10px;
}

.btnofferte {
    color: #f5f0f0;
    padding: 5px;
}

.h2keuzehulp {
    font-size: 1.7em !important;
    padding: 15px;
}

@media (min-width:640px) and (max-width:768px) {
    .leftposition {
        margin-top: 386px;
        max-width: 300px !important;
        float: right;
    }
}

.leftposition {
    margin-top: 150px;
    max-width: 300px !important;
    float: right;
}

h2.keuzehulph2 {
    font-size: 2em !important;
    font-weight: normal;
}

img.aantal-image {
    max-width: 275px;
    max-height: 350px;
}

img.aantal-image2 {
    max-width: 275px;
    max-height: 350px;
}

img.wand-image {
    max-width: 275px;
    max-height: 350px;
}

img.paal-image {
    /* max-width: 275px */
    /* max-height: 350px */
}

img.wand-image2 {
    max-width: 275px;
    max-height: 350px;
}

img.paal-image2 {
    max-width: 275px;
    max-height: 350px;
}

img.thuis-image2 {
    max-width: 275px;
    max-height: 350px;
}

img.bedrijf-image2 {
    max-width: 275px;
    max-height: 350px;
}

.zindextop {
    z-index: 99;
}

/* Responsive Positioning */
@media (max-width: 767px) {
    .leftposition {
        margin-top: 350px;
    }

    .blokpositie {
        z-index: 2;
        cursor: pointer;
        top: 80px;
    }
}

@media (max-width: 640px) {
    hr.line4,
    hr.line3 {
        width: 100px;
    }

    .blokpositie {
        position: absolute;
        top: 200px;
        left: -20px;
    }
}

@media (max-width: 575px) {
    .leftposition {
        margin-top: 350px;
        max-width: 200px !important;
        float: left;
    }
}

@media (max-width: 449px) {
    .line3,
    .line4 {
        left: 30px;
    }

    .line5,
    .line6 {
        right: 10px;
        width: 108px;
    }

    .blokpositie {
        position: absolute;
        top: 200px;
    }

    div#autolaadpaal {
        position: absolute;
        right: 10%;
    }

    div#fietslaadpaal {
        position: absolute;
        left: 10%;
    }

    .leftposition {
        margin-top: 200px;
        max-width: 150px !important;
        float: left;
        font-size: 14px!important;
    }
}

@media (max-width: 375px) {
    .leftposition {
        margin-top: 170px;
        max-width: 130px !important;
        float: left;
        font-size: 12px!important;
    }
}

@media (max-width:419px) {
    .pb-4 {
        margin-bottom: -23px;
        margin-right: -11px;
    }
}

.rightposition {
    margin-top: 150px;
}

@media (min-width:1440px) {
    .rightposition {
        position: relative;
        right: 20%;
        top: 20px;
        width: 175px!important;
    }

    .leftposition {
        position: relative;
        right: 20%;
        top: 20px;
        width: 175px!important;
    }

    .line5,
    .line6 {
        right: 10px!important
        ;
    }
}

@media (min-width:0px) and (max-width:991px) {
    .colordivleft {
        display: none;
    }

    .colordivright {
        display: none;
    }
}

@media (min-width:576px) and (max-width:991px) {
    .row-height-md {
        height: 100%;
    }

    .rightposition {
        position: absolute;
        right: 80px;
        top: 200px;
        width: 175px!important;
    }

    .leftposition {
        margin-top: 350px;
        max-width: 150px !important;
        float: left;
        font-size: 14px!important;
    }

    .smextraruimte {
        margin-top: 205px !important;
    }
}

@media (min-width:375px) and (max-width:991px) {
    .row-height-md {
        height: 475px;
    }

    .rightposition {
        position: absolute;
        top: 160px;
        width: 175px!important;
        right: 0;
    }

    .leftposition {
        margin-top: 310px;
        max-width: 150px !important;
        float: left;
        font-size: 14px!important;
    }

    .image-container {
        position: absolute;
        left: 20;
    }

    .image-container2 {
        position: absolute;
        right: 30px;
    }

    .image-container3 {
        position: absolute;
        left: 20;
    }

    .image-container4 {
        position: absolute;
        right: 30px;
    }

    .image-container5 {
        position: absolute;
        left: 20;
    }

    .image-container6 {
        position: absolute;
        right: 30px;
    }

    .image-container8 {
        position: absolute;
        left: 20;
    }

    .image-container9 {
        position: absolute;
        left: 20;
    }

    .image-container7 {
        position: absolute;
        right: 30px;
    }
}

#keuzehulp img {
    max-height: 350px!important;
    max-width: 275px!important;
}

.line5,
.line6 {
    right: 30px;
}

.btnwidth {
    width: 250px;
    border-radius: 20px !important;
}

.top-margin-btn {
    margin-top: 75px;
}

@media (max-width:991px) {
    .carposmd {
        position: absolute;
    }
}

@media (min-width:480px) and (max-width:575px) {
    .rightposition {
        position: absolute;
        right: 30px;
        top: 150px;
        width: 175px!important;
        font-size: 14px!important;
    }

    .btnwidth {
        width: 190px;
    }

    .marginbtn {
        margin-left: -50px;
    }

    .smextraruimte {
        margin-top: 205px !important;
    }
}

@media (min-width:0px) and (max-width:374px) {
    .rightposition {
        position: absolute;
        right: 30px;
        top: 50px;
        width: 175px!important;
        font-size: 14px!important;
    }

    .leftposition {
        margin-top: 200px;
        max-width: 150px !important;
        float: left;
        font-size: 14px!important;
    }

    .posmob {
        margin-top: 20px!important;
    }
}

@media (min-width:375px) and (max-width:479px) {
    .rightposition {
        position: absolute;
        right: 30px;
        top: 50px;
        width: 175px!important;
        font-size: 14px!important;
    }

    .leftposition {
        margin-top: 200px;
        max-width: 150px !important;
        float: left;
        font-size: 14px!important;
    }

    .btnwidth {
        width: 190px;
    }

    .marginbtn {
        margin-left: -50px;
    }

    .top-margin-btn {
        margin-top: 20px;
    }

    .mobspace {
        margin-left: -30px!important;
    }

    .smextraruimte {
        margin-top: 205px !important;
    }

    .posmob {
        margin-top: 20px!important;
    }
}

@media (max-width: 576px) {
    #autopakketten {
        /* margin-top: -100px!important */
        transition: margin-top 0.3s ease;
    }
}

.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 99999999999999;
}

.popup-content {
    background: #fefdeeeb;
    padding: 50px;
    border-radius: 12px;
    text-align: left;
    padding-left: 2%;
    margin: auto;
    line-height: 30px;
}

button.bg-secondary.border-secondary.btnofferte.rounded-pill {
    float: right;
}

h2.kopcenter {
    text-align: center;
    margin-bottom: 30px;
}

h1.bg-light.fs-4.text-dark-emphasis {
    z-index: 9;
}

p.cookiemelding {
    font-size: 12px;
    position: absolute;
    bottom: 0;
    color: #fff;
}

ul#menu-hoofdmenu {
    margin-top: 50px;
}

.left {
    text-align: left;
}

.modal {
    z-index: 1050 !important;

    /* standaard Bootstrap gebruikt 1050 */
    background: #fefdeeeb;
    padding: 50px;
    border-radius: 12px;
    text-align: left;
    padding-left: 2%;
    margin: auto;
    line-height: 30px;
}