.va-mobile-scroll-guard,
.va-mobile-scroll-guard body {
    width: 100%;
    max-width: 100%;
    overflow-x: clip;
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
}

.va-mobile-scroll-guard *,
.va-mobile-scroll-guard *::before,
.va-mobile-scroll-guard *::after {
    box-sizing: border-box;
}

.va-mobile-scroll-guard body {
    margin: 0;
}

.va-mobile-scroll-guard img,
.va-mobile-scroll-guard svg,
.va-mobile-scroll-guard video,
.va-mobile-scroll-guard canvas {
    max-width: 100%;

}

body.va-centered-template-page {
    min-height: 100dvh;
    display: flex;
    align-items: center;
    justify-content: center;

    box-sizing: border-box;
    padding: clamp(12px, 3vw, 32px);
}

body.va-centered-template-page > main,
body.va-centered-template-page > .wrap {
    width: min(100%, 760px);
}



.va-footer-link {
    display: inline-flex;
    align-items: baseline;
    text-decoration: none;
    cursor: pointer;
    font: inherit;
    color: inherit;
}

.va-brand-switcher {
    display: inline-grid;
}

.va-footer-powered-wrapper {
    white-space: nowrap;
}

.va-footer-powered-prefix {
    white-space: nowrap;
}

.va-brand-switcher span {
    grid-area: 1 / 1;
    font: inherit;
    white-space: nowrap;
    animation-duration: 8s;
    animation-iteration-count: infinite;
    animation-timing-function: ease-in-out;
}

.va-brand-switcher span:nth-child(1) {
    animation-name: va-fade-1;
}

.va-brand-switcher span:nth-child(2) {
    animation-name: va-fade-2;
}

@keyframes va-fade-1 {
    0%,
    40% {
        opacity: 1;
    }

    50%,
    90% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes va-fade-2 {
    0%,
    40% {
        opacity: 0;
    }

    50%,
    90% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}


@media (prefers-reduced-motion: reduce) {
    .va-brand-switcher span {
        animation: none;
    }

    .va-brand-switcher span:nth-child(2) {
        opacity: 0;
    }
}
