.streetview-wrap {
    width: 100%;
    max-width: 60rem;
    aspect-ratio: 16 / 9;
    position: relative;
    overflow: hidden;
    border-radius: 1rem;
    box-shadow:
            0 30px 80px rgba(0,0,0,0.25),
            inset 0 0 0 1px rgba(255,255,255,0.15);

    &::after{
        content:"";
        position:absolute;
        inset:0;
        pointer-events:none;
        background:
                radial-gradient(
                        ellipse at center,
                        rgba(0,0,0,0) 55%,
                        rgba(0,0,0,0.35) 100%
                );
    }

    & iframe {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        border: 0;
    }
}

.fresh-meat-wrapper {
    display: flex;
    flex-direction: column;
    margin-top: -22rem;
    transition: opacity .35s ease, transform .35s ease, margin-top .35s ease;
}

@media (max-width: 1400px) {
    .fresh-meat-wrapper {
        margin-top: 0;
        flex-direction: column-reverse !important;
    }
}

.tb-contact-form .tb-form-group.mobile-responsive {
    align-items: stretch;

    & > .tb-form-group.vertical {
        flex: 1;
        display: flex;
        flex-direction: column;
        justify-content: space-between;

        & > * {
            flex: 0;
        }
    }
}
