Here is the code snippet I am working with:
<div id="MainV3_VideoModal" class="modal fade">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-body">
<div class="embed-responsive embed-responsive-16by9">
<iframe id="MainV3_Video" class="embed-responsive-item" src="//www.youtube.com/embed/test" allowfullscreen></iframe>
</div>
</div>
</div>
</div>
</div>
My goal is to make the modal with the youtube video take up 85% of the screen's width and maintain a 16:9 aspect ratio for the height. I have tried using CSS to set the max-width on the modal-dialog, but it doesn't seem to be working as expected. Any suggestions or guidance on how I can achieve this would be highly appreciated.