/* Remove the fixed aspect ratio */
.iframe-custom-aspect-ratio {
    position: relative;
    width: 100%;
    height: 100vh; /* Use viewport height */
    overflow: hidden; /* Prevent scrollbars on the container */
    }
     
    .iframe-custom-aspect-ratio iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
    overflow: auto; /* Allow scrolling only inside iframe */
    }
 
    .mb-30 {
        margin-bottom:0 !important;
    }

    .mb-md-50 {
        margin-bottom:0 !important;
    }

    .mb-lg-60 {
        margin-bottom:0 !important;
    }

    @media (max-width: 1023.98px) {
        .vi-page-layout__panel--detail {
        bottom: auto !important;
    }
    }