/**
 *
 * phpBB Studio - Excel URL embed. An extension for the phpBB Forum Software package.
 *
 * @copyright (c) 2019, phpBB Studio, https://www.phpbbstudio.com
 * @license GNU General Public License, version 2 (GPL-2.0)
 *
 */

/** With bottom bar and responsive */
.studio-excel-embed-full {
	position: relative;
	height: 0;

	/* noinspection Stylelint */
	padding-bottom: 56.25%; /* 16:9 */
}

.studio-excel-embed-full iframe {
	border: none;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

/** No bottom bar and fixed height */
.studio-excel-embed {
	position: relative;
	height: 415px;
}

.studio-excel-embed iframe {
	border: none;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 450px;
}
