/** Shopify CDN: Minification failed

Line 16:0 Unexpected "<"
Line 22:11 Expected identifier but found whitespace
Line 22:13 Unexpected "{"
Line 22:22 Expected ":"
Line 22:50 Expected ":"
Line 26:10 Expected identifier but found whitespace
Line 26:12 Unexpected "{"
Line 26:21 Expected ":"
Line 26:46 Expected identifier but found "%"
Line 30:0 Unexpected "<"

**/
/* START_SECTION:iframe-section (INDEX:18) */
<style>
.custom-iframe-container {
    text-align: center; /* Centers iframe horizontally */
    display: flex;
    justify-content: center; /* These two lines center the iframe horizontally and vertically */
    align-items: center;
    height: {{ section.settings.iframe_height }}px; /* Sets the height of the container to match the height of the iframe */
}

.custom-iframe-container iframe {
    width: {{ section.settings.iframe_width }}%; /* Width as per the user's setting */
    border: none;
    /* Additional styling as required */
}
</style>
/* END_SECTION:iframe-section */
