/* /Components/Layout/MainLayout.razor.rz.scp.css */
/* GV Website - full-width layout, no sidebar */

#blazor-error-ui[b-gf3z2zaav7] {
    color-scheme: light only;
    background: lightyellow;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    box-sizing: border-box;
    display: none;
    left: 0;
    padding: 0.6rem 1.25rem 0.7rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

    #blazor-error-ui .dismiss[b-gf3z2zaav7] {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }
/* /Components/Layout/ReconnectModal.razor.rz.scp.css */
.components-reconnect-first-attempt-visible[b-waahqnr8qu],
.components-reconnect-repeated-attempt-visible[b-waahqnr8qu],
.components-reconnect-failed-visible[b-waahqnr8qu],
.components-pause-visible[b-waahqnr8qu],
.components-resume-failed-visible[b-waahqnr8qu],
.components-rejoining-animation[b-waahqnr8qu] {
    display: none;
}

#components-reconnect-modal.components-reconnect-show .components-reconnect-first-attempt-visible[b-waahqnr8qu],
#components-reconnect-modal.components-reconnect-show .components-rejoining-animation[b-waahqnr8qu],
#components-reconnect-modal.components-reconnect-paused .components-pause-visible[b-waahqnr8qu],
#components-reconnect-modal.components-reconnect-resume-failed .components-resume-failed-visible[b-waahqnr8qu],
#components-reconnect-modal.components-reconnect-retrying[b-waahqnr8qu],
#components-reconnect-modal.components-reconnect-retrying .components-reconnect-repeated-attempt-visible[b-waahqnr8qu],
#components-reconnect-modal.components-reconnect-retrying .components-rejoining-animation[b-waahqnr8qu],
#components-reconnect-modal.components-reconnect-failed[b-waahqnr8qu],
#components-reconnect-modal.components-reconnect-failed .components-reconnect-failed-visible[b-waahqnr8qu] {
    display: block;
}


#components-reconnect-modal[b-waahqnr8qu] {
    background-color: white;
    width: 20rem;
    margin: 20vh auto;
    padding: 2rem;
    border: 0;
    border-radius: 0.5rem;
    box-shadow: 0 3px 6px 2px rgba(0, 0, 0, 0.3);
    opacity: 0;
    transition: display 0.5s allow-discrete, overlay 0.5s allow-discrete;
    animation: components-reconnect-modal-fadeOutOpacity-b-waahqnr8qu 0.5s both;
    &[open]

{
    animation: components-reconnect-modal-slideUp-b-waahqnr8qu 1.5s cubic-bezier(.05, .89, .25, 1.02) 0.3s, components-reconnect-modal-fadeInOpacity-b-waahqnr8qu 0.5s ease-in-out 0.3s;
    animation-fill-mode: both;
}

}

#components-reconnect-modal[b-waahqnr8qu]::backdrop {
    background-color: rgba(0, 0, 0, 0.4);
    animation: components-reconnect-modal-fadeInOpacity-b-waahqnr8qu 0.5s ease-in-out;
    opacity: 1;
}

@keyframes components-reconnect-modal-slideUp-b-waahqnr8qu {
    0% {
        transform: translateY(30px) scale(0.95);
    }

    100% {
        transform: translateY(0);
    }
}

@keyframes components-reconnect-modal-fadeInOpacity-b-waahqnr8qu {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes components-reconnect-modal-fadeOutOpacity-b-waahqnr8qu {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

.components-reconnect-container[b-waahqnr8qu] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

#components-reconnect-modal p[b-waahqnr8qu] {
    margin: 0;
    text-align: center;
}

#components-reconnect-modal button[b-waahqnr8qu] {
    border: 0;
    background-color: #6b9ed2;
    color: white;
    padding: 4px 24px;
    border-radius: 4px;
}

    #components-reconnect-modal button:hover[b-waahqnr8qu] {
        background-color: #3b6ea2;
    }

    #components-reconnect-modal button:active[b-waahqnr8qu] {
        background-color: #6b9ed2;
    }

.components-rejoining-animation[b-waahqnr8qu] {
    position: relative;
    width: 80px;
    height: 80px;
}

    .components-rejoining-animation div[b-waahqnr8qu] {
        position: absolute;
        border: 3px solid #0087ff;
        opacity: 1;
        border-radius: 50%;
        animation: components-rejoining-animation-b-waahqnr8qu 1.5s cubic-bezier(0, 0.2, 0.8, 1) infinite;
    }

        .components-rejoining-animation div:nth-child(2)[b-waahqnr8qu] {
            animation-delay: -0.5s;
        }

@keyframes components-rejoining-animation-b-waahqnr8qu {
    0% {
        top: 40px;
        left: 40px;
        width: 0;
        height: 0;
        opacity: 0;
    }

    4.9% {
        top: 40px;
        left: 40px;
        width: 0;
        height: 0;
        opacity: 0;
    }

    5% {
        top: 40px;
        left: 40px;
        width: 0;
        height: 0;
        opacity: 1;
    }

    100% {
        top: 0px;
        left: 0px;
        width: 80px;
        height: 80px;
        opacity: 0;
    }
}
/* /Components/Pages/EngineeringContactPage.razor.rz.scp.css */
/* ── LOADING ── */
.gv-loading[b-jgajirvk9l] {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-color: #1a1a1a;
}

/* ── HERO ── */
.gv-hero[b-jgajirvk9l] {
    height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
    background-size: cover;
    background-position: center;
}

.gv-hero-content h1[b-jgajirvk9l] {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    margin-bottom: 0;
    color: white;
    animation: gvFadeIn-b-jgajirvk9l 1s ease-in-out;
}

/* ── CONTACT SECTIE ── */
.gv-content-section[b-jgajirvk9l] {
    padding: 80px 60px;
}

.gv-content-contact[b-jgajirvk9l] {
    background-color: #f5f5f5;
    color: black;
}

.gv-contact-container[b-jgajirvk9l] {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

/* ── CONTACT INFO ── */
.gv-contact-info h2[b-jgajirvk9l] {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.gv-contact-text[b-jgajirvk9l] {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 40px;
}

.gv-contact-item[b-jgajirvk9l] {
    margin-bottom: 30px;
}

.gv-contact-item h3[b-jgajirvk9l] {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #333;
}

.gv-contact-item p[b-jgajirvk9l] {
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

.gv-contact-item a[b-jgajirvk9l] {
    color: #1a1a1a;
    text-decoration: none;
    transition: color 0.3s ease;
}

.gv-contact-item a:hover[b-jgajirvk9l] {
    color: #D2B48C;
}

/* ── GOOGLE MAPS ── */
.gv-contact-map[b-jgajirvk9l] {
    width: 100%;
    height: 500px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.gv-contact-map iframe[b-jgajirvk9l] {
    display: block;
}

/* ── ANIMATIE ── */
@keyframes gvFadeIn-b-jgajirvk9l {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
    .gv-contact-container[b-jgajirvk9l] {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .gv-contact-map[b-jgajirvk9l] {
        height: 400px;
    }
}

@media (max-width: 768px) {
    .gv-hero-content h1[b-jgajirvk9l] {
        font-size: 30px;
    }

    .gv-content-section[b-jgajirvk9l] {
        padding: 50px 25px;
    }

    .gv-contact-info h2[b-jgajirvk9l] {
        font-size: 2rem;
    }

    .gv-contact-map[b-jgajirvk9l] {
        height: 300px;
    }
}
/* /Components/Pages/EngineeringPage.razor.rz.scp.css */
/* ── LOADING ── */
.gv-loading[b-ojr8548ag8] {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-color: #1a1a1a;
}

/* ── HERO ── */
.gv-hero[b-ojr8548ag8] {
    height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
    background-size: cover;
    background-position: center;
}

.gv-hero-content h1[b-ojr8548ag8] {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    margin-bottom: 0;
    color: white;
    animation: gvFadeIn-b-ojr8548ag8 1s ease-in-out;
}

/* ── INHOUD ── */
.gv-content-section[b-ojr8548ag8] {
    padding: 80px 60px;
}

.gv-content-engineering[b-ojr8548ag8] {
    background-color: #D2B48C;
    color: black;
}

.gv-content-hotel[b-ojr8548ag8] {
    background-color: #ADD8E6;
    color: black;
}

.gv-content-inner[b-ojr8548ag8] {
    max-width: 800px;
    margin: 0 auto;
}

.gv-content-inner h2[b-ojr8548ag8] {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    margin-bottom: 20px;
}

.gv-content-inner p[b-ojr8548ag8] {
    font-size: 1.1rem;
    line-height: 1.8;
}

/* ── CONTACT KNOP ── */
.gv-contact-button-container[b-ojr8548ag8] {
    margin-top: 40px;
    text-align: center;
}

.gv-contact-button[b-ojr8548ag8] {
    display: inline-block;
    padding: 15px 40px;
    background-color: #1a1a1a;
    color: white;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 5px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.gv-contact-button:hover[b-ojr8548ag8] {
    background-color: #333;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
    color: white;
}

/* Footer stijlen staan in GvFooter.razor.css */

/* ── ANIMATIE ── */
@keyframes gvFadeIn-b-ojr8548ag8 {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
    .gv-hero-content h1[b-ojr8548ag8] {
        font-size: 30px;
    }

    .gv-content-section[b-ojr8548ag8] {
        padding: 50px 25px;
    }
}
/* /Components/Pages/HomePage.razor.rz.scp.css */
/* CSS variables are defined globally in app.css */


.gv-loading[b-9gt9kal8a0] {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-color: #1a1a1a;
}

/* Header en navigatie stijlen staan in NavMenu.razor.css */

/* ── HERO ── */
.gv-hero[b-9gt9kal8a0] {
    height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
    background-size: cover;
    background-position: center;
}

.gv-hero-content h1[b-9gt9kal8a0] {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    margin-bottom: 20px;
    animation: gvFadeIn-b-9gt9kal8a0 1s ease-in-out;
    color: white;
}

.gv-hero-buttons[b-9gt9kal8a0] {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
}

.gv-btn[b-9gt9kal8a0] {
    padding: 12px 25px;
    border: none;
    cursor: pointer;
    font-size: 16px;
    font-family: 'Inter', sans-serif;
    text-decoration: none;
    display: inline-block;
    transition: transform 0.3s;
    color: black;
}

.gv-btn:hover[b-9gt9kal8a0] {
    transform: scale(1.05);
    color: black;
}

.gv-btn-engineering[b-9gt9kal8a0] {
    background-color: #D2B48C;
}

.gv-btn-hotel[b-9gt9kal8a0] {
    background-color: #ADD8E6;
}

/* ── SPLIT BLOKKEN ── */
.gv-split[b-9gt9kal8a0] {
    display: flex;
    flex-wrap: wrap;
}

.gv-block[b-9gt9kal8a0] {
    flex: 1;
    min-width: 300px;
    padding: 60px;
    transition: opacity 0.4s ease, transform 0.4s ease;
    opacity: 0;
    transform: translateY(30px);
}

.gv-block.visible[b-9gt9kal8a0] {
    opacity: 1;
    transform: translateY(0);
}

.gv-block:hover[b-9gt9kal8a0] {
    transform: scale(1.03);
}

.gv-engineering[b-9gt9kal8a0] {
    background-color: #D2B48C;
    color: black;
}

.gv-hotel[b-9gt9kal8a0] {
    background-color: #ADD8E6;
    color: black;
}

.gv-block h2[b-9gt9kal8a0] {
    font-family: 'Playfair Display', serif;
    margin-bottom: 16px;
}

.gv-block-btn[b-9gt9kal8a0] {
    display: inline-block;
    margin-top: 16px;
    padding: 10px 20px;
    background-color: rgba(0, 0, 0, 0.15);
    color: black;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s;
}

.gv-block-btn:hover[b-9gt9kal8a0] {
    background-color: rgba(0, 0, 0, 0.3);
    color: black;
}

/* Footer stijlen staan in GvFooter.razor.css */

/* ── ANIMATIE ── */
@keyframes gvFadeIn-b-9gt9kal8a0 {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
    .gv-hero-content h1[b-9gt9kal8a0] {
        font-size: 30px;
    }
}
/* /Components/Pages/HotelContactPage.razor.rz.scp.css */
/* ── LOADING ── */
.gv-loading[b-j294ushkz0] {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-color: #1a1a1a;
}

/* ── HERO ── */
.gv-hero[b-j294ushkz0] {
    height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
    background-size: cover;
    background-position: center;
}

.gv-hero-content h1[b-j294ushkz0] {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    margin-bottom: 0;
    color: white;
    animation: gvFadeIn-b-j294ushkz0 1s ease-in-out;
}

/* ── CONTACT SECTIE ── */
.gv-content-section[b-j294ushkz0] {
    padding: 80px 60px;
}

.gv-content-contact[b-j294ushkz0] {
    background-color: #f5f5f5;
    color: black;
}

.gv-contact-container[b-j294ushkz0] {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

/* ── CONTACT INFO ── */
.gv-contact-info h2[b-j294ushkz0] {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.gv-contact-text[b-j294ushkz0] {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 40px;
}

.gv-contact-item[b-j294ushkz0] {
    margin-bottom: 30px;
}

.gv-contact-item h3[b-j294ushkz0] {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #333;
}

.gv-contact-item p[b-j294ushkz0] {
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

.gv-contact-item a[b-j294ushkz0] {
    color: #1a1a1a;
    text-decoration: none;
    transition: color 0.3s ease;
}

.gv-contact-item a:hover[b-j294ushkz0] {
    color: #ADD8E6;
}

/* ── GOOGLE MAPS ── */
.gv-contact-map[b-j294ushkz0] {
    width: 100%;
    height: 500px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.gv-contact-map iframe[b-j294ushkz0] {
    display: block;
}

/* ── ANIMATIE ── */
@keyframes gvFadeIn-b-j294ushkz0 {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
    .gv-contact-container[b-j294ushkz0] {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .gv-contact-map[b-j294ushkz0] {
        height: 400px;
    }
}

@media (max-width: 768px) {
    .gv-hero-content h1[b-j294ushkz0] {
        font-size: 30px;
    }

    .gv-content-section[b-j294ushkz0] {
        padding: 50px 25px;
    }

    .gv-contact-info h2[b-j294ushkz0] {
        font-size: 2rem;
    }

    .gv-contact-map[b-j294ushkz0] {
        height: 300px;
    }
}
/* /Components/Pages/HotelPage.razor.rz.scp.css */
/* ── LOADING ── */
.gv-loading[b-efsg5i1du9] {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-color: #1a1a1a;
}

/* ── HERO ── */
.gv-hero[b-efsg5i1du9] {
    height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
    background-size: cover;
    background-position: center;
}

.gv-hero-content h1[b-efsg5i1du9] {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    margin-bottom: 0;
    color: white;
    animation: gvFadeIn-b-efsg5i1du9 1s ease-in-out;
}

/* ── INHOUD ── */
.gv-content-section[b-efsg5i1du9] {
    padding: 80px 60px;
}

.gv-content-engineering[b-efsg5i1du9] {
    background-color: #D2B48C;
    color: black;
}

.gv-content-hotel[b-efsg5i1du9] {
    background-color: #ADD8E6;
    color: black;
}

.gv-content-inner[b-efsg5i1du9] {
    max-width: 800px;
    margin: 0 auto;
}

.gv-content-inner h2[b-efsg5i1du9] {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    margin-bottom: 20px;
}

.gv-content-inner p[b-efsg5i1du9] {
    font-size: 1.1rem;
    line-height: 1.8;
}

/* ── CONTACT KNOP ── */
.gv-contact-button-container[b-efsg5i1du9] {
    margin-top: 40px;
    text-align: center;
}

.gv-contact-button[b-efsg5i1du9] {
    display: inline-block;
    padding: 15px 40px;
    background-color: #1a1a1a;
    color: white;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 5px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.gv-contact-button:hover[b-efsg5i1du9] {
    background-color: #333;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
    color: white;
}

/* Footer stijlen staan in GvFooter.razor.css */

/* ── ANIMATIE ── */
@keyframes gvFadeIn-b-efsg5i1du9 {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
    .gv-hero-content h1[b-efsg5i1du9] {
        font-size: 30px;
    }

    .gv-content-section[b-efsg5i1du9] {
        padding: 50px 25px;
    }
}
/* /Components/Shared/GvFooter.razor.rz.scp.css */
.gv-footer[b-an54997ao8] {
    background-color: #111;
    text-align: center;
    padding: 40px 25px 25px;
    color: #ccc;
    font-size: 0.9rem;
}

.gv-footer-logo[b-an54997ao8] {
    height: 100px;
    width: 100px;
    object-fit: contain;
    display: block;
    margin: 0 auto 20px;
}
/* /Components/Shared/LanguageSelector.razor.rz.scp.css */
.language-selector[b-be4bk0urnf] {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-left: 20px;
    padding-left: 20px;
    border-left: 1px solid rgba(255, 255, 255, 0.2);
}

.language-label[b-be4bk0urnf] {
    font-size: 0.85rem;
    margin-right: 4px;
    opacity: 0.7;
}

.language-button[b-be4bk0urnf] {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.75rem;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    letter-spacing: 0.05em;
    padding: 3px 8px;
    border-radius: 3px;
    cursor: pointer;
    transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.language-button:hover:not(:disabled)[b-be4bk0urnf] {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border-color: rgba(255, 255, 255, 0.5);
}

.language-button.active[b-be4bk0urnf] {
    background: #ADD8E6;
    border-color: #ADD8E6;
    color: #111;
    cursor: default;
}

@media (max-width: 768px) {
    .language-selector[b-be4bk0urnf] {
        margin-left: 15px;
        padding-left: 0;
        border-left: none;
        border-top: 1px solid rgba(255, 255, 255, 0.15);
        padding-top: 12px;
        margin-top: 5px;
    }
}
/* /Components/Shared/NavMenu.razor.rz.scp.css */
.gv-header[b-fd942jyuw1] {
    position: sticky;
    top: 0;
    background: rgba(0, 0, 0, 0.9);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 30px;
    z-index: 1000;
}

.gv-logo[b-fd942jyuw1] {
    font-weight: bold;
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    letter-spacing: 1px;
    color: white;
    text-decoration: none;
}

.gv-logo-img[b-fd942jyuw1] {
    height: 45px;
    width: 45px;
    display: block;
    object-fit: contain;
}

.gv-nav[b-fd942jyuw1] {
    display: flex;
    align-items: center;
}

.gv-nav a[b-fd942jyuw1] {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    margin-left: 25px;
    position: relative;
    font-size: 0.9rem;
    letter-spacing: 0.03em;
    transition: color 0.2s;
}

.gv-nav a:hover[b-fd942jyuw1] {
    color: white;
}

.gv-nav a[b-fd942jyuw1]::after {
    content: "";
    position: absolute;
    width: 0%;
    height: 2px;
    background: #ADD8E6;
    bottom: -5px;
    left: 0;
    transition: 0.3s;
}

.gv-nav a:hover[b-fd942jyuw1]::after {
    width: 100%;
}

.gv-menu-toggle[b-fd942jyuw1] {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
    line-height: 1;
}

@media (max-width: 768px) {
    .gv-nav[b-fd942jyuw1] {
        position: absolute;
        top: 60px;
        right: 0;
        background: #111;
        flex-direction: column;
        width: 200px;
        display: none;
    }

    .gv-nav.active[b-fd942jyuw1] {
        display: flex;
    }

    .gv-nav a[b-fd942jyuw1] {
        margin: 15px;
    }

    .gv-menu-toggle[b-fd942jyuw1] {
        display: block;
    }
}
