    /* ===== iOS viewport fix ===== */
html, body {
    height: 100%;
    height: -webkit-fill-available;
    overflow: hidden;
}

body {
    min-height: 100vh;
    min-height: -webkit-fill-available;
    overscroll-behavior: none;
}

/* ===== RESET ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: -apple-system, BlinkMacSystemFont, Arial, sans-serif;
}

/* ===== BODY ===== */
body {
    min-height: 100vh;

    /* subtiele overlay voor contrast */
    background-color: rgba(0,0,0,0.32);
    background-blend-mode: darken;

    overflow-x: hidden;
    color: #fff;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    background-image: url("https://vandewerf.eu/vw_AFB/afb_vw_achter.jpg");
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    z-index: -1;
    transition: filter .6s ease, transform .6s ease;
}

body.vdw_blur-active::before {
    filter: blur(22px);
    transform: scale(1.05);
}

body.vdw_blur-active .vdw_start,
body.vdw_blur-active .vdw_grid,
body.vdw_blur-active .vdw_fvdd-wrapper,
body.vdw_blur-active .vdw_dock,
body.vdw_blur-active .vdw_install-hint,
body.vdw_blur-active .vdw_copyright,
body.vdw_blur-active .vdw_info
 {
opacity: 0 !important;
}

span {
    color: #FF0000;
}

/* ===== GLASS GENERIC ===== */
.vdw_glass {
    background: rgba(255,255,255,0.28);
    backdrop-filter: blur(28px) saturate(160%);
    -webkit-backdrop-filter: blur(28px) saturate(160%);
    border-radius: 28px;
    box-shadow:
        0 8px 20px rgba(0,0,0,0.18),
        inset 0 0 0 1px rgba(255,255,255,0.35);
    transition: opacity .6s ease;
}

/* Blur effect tijdens welkom */
body.vdw_blur-active {
    overflow: hidden;
}

.vdw_text {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 5000;
  opacity: 1;
  transition: opacity .6s ease;
}

.vdw_text h2 {
  font-size: clamp(28px, 6vw, 72px);
  letter-spacing: 1px;
  margin: 0;
}

.vdw_subtext {
  font-size: clamp(14px, 2vw, 18px);
  margin-top: 12px;
  opacity: 1;
  transition: opacity .6s ease;
}

.vdw_name_modal {
position: fixed;
inset: 0;
background: rgba(0,0,0,0.4);
display: flex;
align-items: center;
justify-content: center;
z-index: 6000;
}

.vdw_name_box {
    padding: 30px;
    text-align: center;
    width: 280px;
    transform: scale(0.92);
    opacity: 0;
    transition: transform .35s ease, opacity .35s ease;
}

.vdw_name_box input {
margin-top: 12px;
padding: 8px 10px;
border-radius: 10px;
border: none;
width: 100%;
text-align: center;
}

.vdw_name_box button {
margin-top: 14px;
padding: 8px 14px;
border-radius: 12px;
border: none;
cursor: pointer;
background: rgba(255,255,255,0.6);
backdrop-filter: blur(10px);
transition: transform .15s ease, box-shadow .15s ease;
}

.vdw_name_box.vdw_show {
    transform: scale(1);
    opacity: 1;
}

.vdw_name_box button:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 14px rgba(0,0,0,0.25);
}

.vdw_name_box button:active {
    transform: scale(0.92);
}

.vdw_info {
  position: fixed;
  top: 50%;                      /* net boven Welkom */
  left: 50%;
  transform: translate(-50%, -50%);
  height: 150px;
  width: 150px;
  background-color: #CCCCCC;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  z-index: 5500;                 /* boven blur */
  opacity: 1;
  transition: opacity .4s ease;
}

/* ===== PAGE WRAPPER ===== */
.vdw_start {
    padding: 20px;
    padding-bottom: 120px; /* ruimte voor dock */
}

/* ===== FVDD UITLIJNING ===== */
.vdw_fvdd-wrapper {
margin: 44px auto 0 auto;   /* bovenruimte + horizontaal centreren */
display: flex;
gap: 22px;
justify-content: center;    /* inhoud centreren bij widescreen */
width: 100%;
max-width: 1920px;          /* voorkomt uitrekken op ultra wide */
}

.vdw_fvdd-wrapper .vdw_cardX {
flex: 1;
}

/* ===== MAP CARD ===== */
.vdw_map-card {
    height: 64px;          /* gelijk aan .vdw_icon */
    margin-bottom: 22px;   /* optisch in balans met grid */
    position: relative;
    overflow: hidden;
    box-shadow: inset 0 0 0 1px rgba(255,255,255,0.25);
    cursor: default;
    transition:
        top 0.28s ease,
        left 0.28s ease,
        width 0.28s ease,
        height 0.28s ease,
        border-radius 0.28s ease,
        box-shadow 0.28s ease,
        transform 0.28s ease,
        opacity 0.28s ease;
    will-change: top, left, width, height, transform, opacity;
}

.vdw_map-opening {
    transform: scale(0.96);
    opacity: 0.6;
}

.vdw_map-opened {
    transform: scale(1);
    opacity: 1;
}

.vdw_map-title {
    position: absolute;
    left: 16px;
    top: 16px;
    background: rgba(255,255,255,0.9);
    padding: 12px 16px;
    border-radius: 18px;
    font-weight: 600;
    font-size: 16px;
    box-shadow: 0 6px 14px rgba(0,0,0,0.15);
}

/* ===== FVDD CARD ===== */
.vdw_cardX {
    position: relative;
    border-radius: 28px;
    border: 1px solid rgba(255,255,255,0.45);
    width: 23vw;
    max-width: 480px;
    min-width: 120px;
    height: 17.5vw;
    max-height: 360px;
    min-height: 80px;
    margin-bottom: 22px;
    overflow: hidden;
    cursor: pointer;
}

.vdw_cardX--embed {
    padding: 0;
}

.vdw_cardX .vdw_embed-img {
    object-position: center top; /* voorkomt te veel lucht onderin */
}

.vdw_embed-click {
    width: 100%;
    height: 100%;
    position: relative;
    pointer-events: auto;
}

.vdw_embed-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: inherit;
    display: block;
    pointer-events: none;
}

.vdw_embed-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 10px;
    background: linear-gradient(
        to top,
        rgba(0,0,0,0.55),
        rgba(0,0,0,0.15),
        transparent
    );
    font-size: 12px;
    font-weight: 600;
    opacity: 0;
    transition: opacity 0.2s ease;
}

.vdw_cardX:hover .vdw_embed-overlay {
    opacity: 1;
}

/* ===== SUBTLE ANALOG CLOCK ===== */
.vdw_clock {
    width: 56px;
    height: 56px;
    opacity: 0.85;
}

.vdw_clock-face {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: rgba(255,255,255,0.55);
    box-shadow:
        inset 0 0 0 1px rgba(255,255,255,0.6),
        0 4px 10px rgba(0,0,0,0.25);
}

.vdw_hand {
    position: absolute;
    left: 50%;
    bottom: 50%;
    transform-origin: bottom center;
    transform: translateX(-50%);
    background: rgba(0,0,0,0.65);
    border-radius: 2px;
}

.vdw_hour {
    width: 3px;
    height: 16px;
}

.vdw_minute {
    width: 2px;
    height: 22px;
    opacity: 0.85;
}

.vdw_second {
    width: 1px;
    height: 24px;
    background: rgba(200,0,0,0.8);
}

.vdw_clock-dot {
    position: absolute;
    width: 6px;
    height: 6px;
    background: #000;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
/* ===== APP GRID ===== */
.vdw_grid{
    display:grid;
    grid-template-columns: repeat(auto-fit, minmax(90px,1fr));
    gap:22px;
    position:relative;
    z-index:5;
    justify-content:center;
    justify-items:center;
    max-width:1920px;
    margin:40px auto 0 auto;   /* ← dit was -120px */
}

.vdw_group {
    text-align: center;
}

.vdw_group-title {
    margin-top: 8px;
    font-size: 13px;
    color: rgba(255,255,255,0.95);
    text-shadow: 0 1px 2px rgba(0,0,0,0.35);
}

/* ===== MAP CARD HEADER ===== */
.vdw_map-header {
    position: absolute;
    inset: 0;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    padding: 0 20px; /* geen verticale padding */
}

.vdw_map-left img {
    height: 60px;
    width: auto;
}

.vdw_map-center {
    text-align: center;
    font-size: 48px;
    font-weight: 600;
    color: rgba(255,255,255,0.95);
    text-shadow: 0 1px 2px rgba(0,0,0,0.35);
}

.vdw_map-right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

/* ===== APP ICON ===== */
.vdw_icon {
    width: 64px;
    height: 64px;
    margin: 0 auto;
    border-radius: 18px;

    /* CENTRERING */
    display: flex;
    align-items: center;
    justify-content: center;

    background: linear-gradient(180deg, rgba(255,255,255,0.55), rgba(255,255,255,0.25));
    box-shadow:
        0 6px 14px rgba(0,0,0,0.25),
        inset 0 0 0 1px rgba(255,255,255,0.6);
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

/* ===== HOVER / GLASS EFFECT ===== */
.vdw_icon:hover {
    transform: scale(1.06);
    box-shadow:
        0 10px 22px rgba(0,0,0,0.30),
        inset 0 0 0 1px rgba(255,255,255,0.75);
}

.vdw_icon:hover::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(
        120deg,
        transparent 30%,
        rgba(255,255,255,0.45) 45%,
        rgba(255,255,255,0.18) 55%,
        transparent 70%
    );
    background-size: 200% 100%;
    animation: vdw_glassShine 1.4s ease forwards;
    pointer-events: none;
}

.vdw_icon img {
    display: block;
}

.vdw_icon:active {
    transform: scale(0.92);
    box-shadow:
        0 3px 8px rgba(0,0,0,0.25),
        inset 0 0 0 1px rgba(255,255,255,0.4);
}

/* ===== DOCK ===== */
.vdw_dock {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 40px);
    max-width: 600px;
    padding: 16px;
    display: flex;
    justify-content: space-between;
    backdrop-filter: blur(32px) saturate(180%);
    -webkit-backdrop-filter: blur(32px) saturate(180%);
    border-radius: 30px;
    box-shadow:
        0 12px 30px rgba(0,0,0,0.35),
        inset 0 0 0 1px rgba(255,255,255,0.35);
    z-index: 100;
}

.vdw_dock .vdw_icon {
    width: 60px;
    height: 60px;
}

.vdw_dock-item {
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.vdw_dock-item:hover .vdw_group-title {
    opacity: 1;
}

.vdw_dock .vdw_group-title {
    margin-top: 6px;
    text-align: center;
}

/* ===== DOCK MAGNIFY (iOS/macOS style) ===== */
.vdw_dock {
    --vdwDockMax: 1.55;     /* maximale vergroting */
    --vdwDockMin: 1.00;     /* basis */
    --vdwDockLift: 10px;    /* hoe ver hij omhoog “springt” */
}

.vdw_dock .vdw_dock-item {
    transform: translateZ(0); /* soepeler */
}

.vdw_dock .vdw_icon {
    will-change: transform;
    transition: transform 120ms ease; /* snelle respons */
}

.vdw_icon-voorwaarden {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ===== DOCK ICON REFLECTION ===== */

.vdw_dock .vdw_icon {
    position: relative;
}

.vdw_dock .vdw_icon::after {
    content: "";
    position: absolute;
    left: 0;
    top: 100%;
    width: 100%;
    height: 100%;

    transform: scaleY(-1);
    opacity: 0.18;

    background: inherit;
    border-radius: inherit;

    filter: blur(2px);
    mask-image: linear-gradient(to bottom, rgba(0,0,0,0.45), transparent);
    -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,0.45), transparent);

    pointer-events: none;
}

/* ===== DOCK ICON LIGHT FOCUS ===== */

.vdw_dock .vdw_icon::before{
    content:"";
    position:absolute;
    bottom:-12px;
    left:50%;
    transform:translateX(-50%);
    width:60%;
    height:10px;

    border-radius:50%;

    background:radial-gradient(
        ellipse at center,
        rgba(255,255,255,0.65) 0%,
        rgba(255,255,255,0.25) 40%,
        rgba(255,255,255,0.05) 65%,
        transparent 80%
    );

    opacity:0;
    transition:opacity .18s ease, transform .18s ease;
    pointer-events:none;
}

.vdw_dock .vdw_icon:hover::before{
    opacity:1;
    transform:translateX(-50%) scale(1.2);
}

/* ===== DOCK SPREAD EFFECT ===== */

.vdw_dock {
    --vdwDockSpread: 0px;
}

.vdw_dock-item {
    transition: transform .15s ease;
}

.vdw_dock:hover .vdw_dock-item {
    transform: translateX(var(--vdwDockSpread));
}

.vdw_map-fullscreen {
    position: fixed;
    z-index: 10;
    border-radius: 28px;
    touch-action: pan-y;
}

.vdw_map-fullscreen iframe {
    width: 100%;
    height: 100%;
    border: 0;
    pointer-events: auto;
    border-radius: 28px;
}

/* ===== DOCK CLICK BOUNCE ===== */
@keyframes vdw_dockBounce {
    0%   { transform: translateY(0) scale(1); }
    30%  { transform: translateY(-14px) scale(1.12); }
    55%  { transform: translateY(4px) scale(0.96); }
    75%  { transform: translateY(-6px) scale(1.04); }
    100% { transform: translateY(0) scale(1); }
}

.vdw_dock-bounce {
    animation: vdw_dockBounce .55s cubic-bezier(.34,1.56,.64,1);
}

body.vdw_no-scroll {
    overflow: hidden;
}

.vdw_close-btn {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 36px;
    height: 36px;
    border-radius: 50%;

    /* iOS-style adaptive glass */
    background: rgba(255,255,255,0.35);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 20px;
    font-weight: 600;
    line-height: 1;

    color: #000;
    mix-blend-mode: difference;

    box-shadow:
        0 6px 14px rgba(0,0,0,0.25),
        inset 0 0 0 1px rgba(255,255,255,0.4);

    cursor: pointer;
    z-index: 120;
}

.vdw_close-btn:active {
    transform: scale(0.9);
    opacity: 0.85;
}

.vdw_install-hint {
    position: fixed;
    bottom: 110px; /* boven dock */
    left: 50%;
    transform: translateX(-50%);
    padding: 10px 14px;
    background: rgba(255,255,255,0.85);
    color: #000;
    border-radius: 14px;
    font-size: 13px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.25);
    z-index: 200;
    display: none;
}

.vdw_copyright {
    position: fixed;
    bottom: 8px;               /* nét onder de dock */
    left: 50%;
    transform: translateX(-50%);
    font-size: 11px;
    color: rgba(255,255,255,0.65);
    text-shadow: 0 1px 2px rgba(0,0,0,0.35);
    z-index: 50;
    pointer-events: none;
}

.vdw_maat {
  text-align: center;
  font-weight: bold;
  font-size: 24px;
  margin-bottom: 10px;
}

.vdw_device {
  height: 50px;
  width: 50px;
  background-image: url("../../vw_AFB/AFB_screen/afb_screen_widtH.png");
  background-repeat: no-repeat;
  background-size: 50px 50px;
}

.vdw_ctxmenu {
    position: fixed;
    min-width: 200px;
    background: rgba(255,255,255,0.35);
    backdrop-filter: blur(28px) saturate(160%);
    -webkit-backdrop-filter: blur(28px) saturate(160%);
    border-radius: 18px;
    box-shadow:
        0 10px 30px rgba(0,0,0,0.35),
        inset 0 0 0 1px rgba(255,255,255,0.4);
    padding: 6px;
    z-index: 9999;
}

.vdw_ctx_item {
    padding: 10px 14px;
    border-radius: 12px;
    font-size: 14px;
    cursor: pointer;
    transition: background .15s ease;
}

.vdw_ctx_item:hover {
    background: rgba(255,255,255,0.4);
}

#vdw_agenda_popup{
    position: fixed;
    width: 520px;

    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(14px);

    border-radius: 22px;
    box-shadow: 0 25px 60px rgba(0,0,0,0.35);

    transform: translateY(-10px);
    opacity:0;
    pointer-events:none;

    transition: all 0.25s ease;

    overflow: visible;     /* ← belangrijk */

    z-index:9000;
}

#vdw_agenda_popup.show{
    opacity:1;
    transform:translateY(0);
    pointer-events:auto;
}

#vdw_agenda_arrow{
    position: fixed;
    width: 20px;
    height: 20px;
    background: #7072CF;
    transform: rotate(45deg);
    border-radius: 4px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.20);
    display: none;
    z-index: 9001;
}

#vdw_agenda_popup iframe{
    width: 100%;
    border: 0;
    display: block;
    background: #ffffff;
    display:block;
    border-bottom-left-radius: 22px;
    border-bottom-right-radius: 22px;
}

.vdw_agenda_head{
    background: #7072CF;
    color: #ffffff;
    font-family: Arial, sans-serif;
    font-size: 18px;
    font-weight: bold;
    padding: 10px 14px;
    text-align: center;
    border-top-left-radius: 22px;
    border-top-right-radius: 22px;
}

.vdw_chat {
position: fixed;
top: 130px;
right: 30px;
left: auto;                /* 🔹 BELANGRIJK */
width: 380px;
max-height: calc(100vh - 160px);
overflow-y: auto;
padding: 22px;
border-radius: 28px;
background: #f3f3f8;       /* volledig dekkend */
opacity: 1;                /* geen transparantie */
box-shadow: 0 25px 60px rgba(0,0,0,0.45);
z-index: 999999;           /* boven alles */
display: none;
}

.vdw_chat.vdw_open {
    display: block;
}

.vdw_chat-top {
    display: flex;
    align-items: center;
    margin-bottom: 18px;
}

.vdw_chat-avatar {
    position: relative;
    width: 64px;
    height: 64px;
    margin-right: 14px;
}

.vdw_chat-avatar img {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    object-fit: cover;
}

.vdw_chat-dot {
    position: absolute;
    top: 2px;
    right: 2px;
    width: 12px;
    height: 12px;
    background: #22c55e;
    border-radius: 50%;
    border: 2px solid #fff;
}

.vdw_chat-headtext {
    flex: 1;
}

.vdw_chat-name {
    font-size: 14px;
    font-weight: 600;
    color: #2b2b7a;
}

.vdw_chat-domain {
    color: #e53935;
}

.vdw_chat-hello {
    font-size: 13px;
    margin-top: 4px;
    color: #2b2b7a;
}

.vdw_chat-close {
    cursor: pointer;
    font-size: 20px;
    color: #2b2b7a;
}

.vdw_chat-intro {
    font-size: 14px;
    color: #2b2b7a;
    margin-bottom: 18px;
}

.vdw_chat-messages {
    border: 2px solid #c6c6e6;
    border-radius: 18px;
    padding: 14px;
    margin-bottom: 14px;
    font-style: italic;
    color: #888;
    max-height: 300px;
    overflow-y: auto;
}

.vdw_chat-input {
    width: 100%;
    padding: 14px;
    margin-bottom: 12px;
    border-radius: 18px;
    border: 2px solid #c6c6e6;
    font-size: 16px;
    padding-right: 52px;   /* ruimte voor bubble */
}

.vdw_chat_inputwrap{
    position: relative;
    display: flex;
    align-items: center;   /* dit centreert perfect */
}

.vdw_chat_sendbubble{
    position: absolute;
    right: 12px;
    height: 38px;
    width: 38px;
    top: 6px;
    border-radius: 50%;
    background: #2b2b7a;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.vdw_chat_sendbubble:hover {
    transform: scale(1.08);
}

.vdw_chat_sendbubble:active {
    transform: scale(0.9);
}

.vdw_chat_icon {
    width: 36px;
    height: 28px;
    position: relative;
}

.vdw_chat_sendbubble.vdw_sent {
    animation: vdw_sendPulse .25s ease;
}

.vdw_bubble {
    width: 100%;
    height: 100%;
    background: white;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    position: relative;
}

.vdw_bubble::after {
    content: "";
    position: absolute;
    bottom: -6px;
    left: 10px;
    width: 12px;
    height: 12px;
    background: white;
    transform: rotate(45deg);
    border-radius: 2px;
}

.vdw_bubble span {
    width: 4px;
    height: 4px;
    background: #555;
    border-radius: 50%;
}

.vdw_typing {
    display: inline-flex;
    gap: 4px;
    margin-left: 6px;
    vertical-align: middle;
}

.vdw_typing span {
    width: 5px;
    height: 5px;
    background: #2b2b7a;
    border-radius: 50%;
    animation: vdw_typing 1.4s infinite ease-in-out both;
}

.vdw_typing span:nth-child(1) { animation-delay: 0s; }
.vdw_typing span:nth-child(2) { animation-delay: .2s; }
.vdw_typing span:nth-child(3) { animation-delay: .4s; }

.vdw_new_msg {
    animation: vdw_popIn .25s ease;
}

/* ===== MATRIX SCAN EFFECT ===== */
.vdw_scanline {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 6000;
    background: linear-gradient(
        to bottom,
        transparent 0%,
        rgba(0,255,120,0.15) 45%,
        rgba(0,255,120,0.25) 50%,
        rgba(0,255,120,0.15) 55%,
        transparent 100%
    );
    opacity: 0;
    transform: translateY(-100%);
}

.vdw_scanline.vdw_scan_active {
    animation: vdw_scanMove 1.2s ease forwards;
}

/* ===== ENERGY GLOW ===== */
.vdw_glow {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 5500;
    background: radial-gradient(
        circle at center,
        rgba(0,200,255,0.35),
        rgba(0,200,255,0.15) 30%,
        transparent 60%
    );
    opacity: 0;
    transition: opacity 1s ease;
}

@keyframes vdw_scanMove {
    0%   { opacity: 1; transform: translateY(-100%); }
    100% { opacity: 0; transform: translateY(100%); }
}

@keyframes vdw_popIn {
    from { transform: scale(.9); opacity: 0; }
    to   { transform: scale(1); opacity: 1; }
}

@keyframes vdw_typing {
    0%, 80%, 100% { transform: scale(0.6); opacity: 0.4; }
    40% { transform: scale(1); opacity: 1; }
}

@keyframes vdw_onlinePulse {
    0%   { transform: scale(1);   opacity: 1; }
    50%  { transform: scale(1.3); opacity: 0.6; }
    100% { transform: scale(1);   opacity: 1; }
}

@keyframes vdw_glassShine {
    from { background-position: -200% 0; }
    to   { background-position: 200% 0; }
}

@keyframes vdw_sendPulse {
    0%   { transform: scale(1); }
    50%  { transform: scale(0.8); }
    100% { transform: scale(1); }
}

/* Op kleinere schermhoogtes iets minder omhoog trekken */
@media screen and (max-width: 1920px) {
.vdw_device {
  background-image: url("../vw_AFB/AFB_screen/afb_screen.png");
  background-repeat: no-repeat;
  background-size: 50px 50px;
}
}
/*Half Curved Scherm*/
@media screen and (max-width: 1718px) {
.vdw_device {
  background-image: url("../vw_AFB/AFB_screen/afb_screen_widthH.png");
  background-repeat: no-repeat;
  background-size: 50px 50px;
}
}
/*MacBook Pro*/
@media screen and (max-width: 1440px) {
.vdw_device {
  background-image: url("../vw_AFB/AFB_screen/afb_screen_mbpro.png");
  background-repeat: no-repeat;
  background-size: 50px 50px;
}
}
/*iPad Pro Liggend*/
@media screen and (max-width: 1194px) {
.vdw_device {
  background-image: url("../vw_AFB/AFB_screen/afb_screen_ipad_pro_L.png");
  background-repeat: no-repeat;
  background-size: 50px 50px;
}
}
/*iPad Liggend*/
@media screen and (max-width: 1024px) {
.vdw_device {
  background-image: url("../vw_AFB/AFB_screen/afb_screen_ipad_old_L.png");
  background-repeat: no-repeat;
  background-size: 50px 50px;
}
}
/*iPad Staand*/
@media screen and (max-width: 886px) {
.vdw_device {
  background-image: url("../vw_AFB/AFB_screen/afb_screen_ipad_old_S.png");
  background-repeat: no-repeat;
  background-size: 50px 50px;
}
}
/*iPad Pro Staand*/
@media screen and (max-width: 834px) {
.vdw_device {
  background-image: url("../vw_AFB/AFB_screen/afb_screen_ipad_pro_S.png");
  background-repeat: no-repeat;
  background-size: 50px 50px;
}
}
/*iPhone Pro Max Liggend*/
@media screen and (max-width: 832px) {
.vdw_device {
  background-image: url("../vw_AFB/AFB_screen/afb_screen_iphone_proM_L.png");
  background-repeat: no-repeat;
  background-size: 50px 50px;
}
}
/*iPhone Pro Liggend*/
@media screen and (max-width: 750px) {
.vdw_device {
  background-image: url("../vw_AFB/AFB_screen/afb_screen_iphone_pro_L.png");
  background-repeat: no-repeat;
  background-size: 50px 50px;
}
}
/*iPhone Pro Max Staand*/
@media screen and (max-width: 428px) {
.vdw_device {
  background-image: url("../vw_AFB/AFB_screen/afb_screen_iphone_proM_S.png");
  background-repeat: no-repeat;
  background-size: 50px 50px;
}
}

@media (max-height: 760px) {
.vdw_grid {
  margin-top: -80px;
}
}

@media (max-height: 680px) {
.vdw_grid {
  margin-top: -50px;
}
}

/* ===== TABLET (iPad) ===== */
@media (max-width: 1024px){

.vdw_grid{
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    margin-top: -60px;
}

.vdw_icon{
    width:58px;
    height:58px;
}

}

/* ===== iPHONE ===== */
@media (max-width: 600px){

.vdw_grid{
    grid-template-columns: repeat(3, 1fr);
    gap:16px;
    margin-top:-20px;
}

.vdw_icon{
    width:52px;
    height:52px;
}

.vdw_group-title{
    font-size:11px;
}

}

/* ===== MOBILE DOCK ===== */
@media (max-width:600px){

.vdw_dock{
    max-width:95%;
    padding:10px;
}

.vdw_dock .vdw_icon{
    width:50px;
    height:50px;
}

.vdw_dock .vdw_group-title{
    font-size:9px;
}

}

@media (hover:none){

.vdw_icon:active{
    transform:scale(0.9);
}

}

@media (max-width:700px){

.vdw_fvdd-wrapper{
    gap:12px;
}

.vdw_cardX{
    width:42vw;
    height:30vw;
}

}

.vdw-info-hide .vdw_info{
    opacity:0;
    transition:opacity .5s ease;
}
