#vancars-mobile-cta {
    display: none;
}

@media (max-width: 768px) {

    #vancars-mobile-cta {
        position: fixed;
        left: 12px;
        right: 12px;
        bottom: calc(10px + env(safe-area-inset-bottom));
        z-index: 2147483000;

        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    #vancars-mobile-cta a {
        height: 56px;

        display: flex;
        align-items: center;
        justify-content: center;
        gap: 9px;

        border-radius: 15px;

        font-family: inherit;
        font-size: 16px;
        font-weight: 800;
        line-height: 1;

        text-decoration: none !important;

        box-shadow:
            0 8px 25px rgba(0,0,0,.18),
            0 2px 6px rgba(0,0,0,.08);

        -webkit-tap-highlight-color: transparent;
        transition:
            transform .15s ease,
            opacity .15s ease;
    }

    #vancars-mobile-cta a:active {
        transform: scale(.97);
        opacity: .92;
    }

    #vancars-mobile-cta .vancars-call {
        background: #111827;
        color: #fff;
    }

    #vancars-mobile-cta .vancars-whatsapp {
        background: #20c763;
        color: #fff;
    }

    #vancars-mobile-cta svg {
        width: 21px;
        height: 21px;
        flex: 0 0 21px;
        fill: currentColor;
    }

    body {
        padding-bottom: calc(82px + env(safe-area-inset-bottom)) !important;
    }
}

@media (min-width: 769px) {
    #vancars-mobile-cta {
        display: none !important;
    }
}
