body[data-dragging='true'] {
	user-select: none;

	cursor: ew-resize;
}

.content {
	padding: 12px 16px 24px;
	flex-grow: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.player-container {
	position: relative;
}
.player-container:not(.loading) {
	line-height: 0;
}
.loading {
	width: 100%;
	max-width: 480px;
	height: 360px;
	padding: 12px;
	box-sizing: border-box;
	display: flex;
	align-items: center;
	justify-content: center;

	text-align: center;
	white-space: pre-wrap;
	background-color: #000;
}
.player {
	width: 100%;
	height: 100%;
	position: absolute;
}
.sizer {
	width: 100%;
	height: auto;
}

.shockwave div, .shockwave canvas {
	width: 100% !important;
	height: 100% !important;
}

.actions {
	margin-top: 12px;
	display: flex;
}
.more-info {
	margin-right: 6px;
}

.panel-container {
	width: 384px;
	min-width: 256px;
	max-width: 75%;
	height: calc(100vh - 24px);
	overflow: auto;
	position: sticky;
	top: 0;
	flex-shrink: 0;
	align-self: flex-start;
	display: flex;
	align-items: stretch;

	background-color: #000;
}
.draggable {
	width: 12px;
	position: sticky;
	top: 0;
	flex-shrink: 0;

	cursor: ew-resize;
}
.panel {
	padding: 8px 12px 0 0;
	box-sizing: border-box;
	flex-grow: 1;
}
.table + .table {
	margin-top: 8px;
}
.table:last-child {
	padding-bottom: 8px;
}
.row {
	padding: 2px 6px 4px;
	box-sizing: border-box;
}
.row:nth-child(odd) {
	background-color: #2d2d30;
}
.row:nth-child(even) {
	background-color: #1b1b1c;
}
.field, .value {
	margin-top: 2px;
	display: inline-block;
}
.field {
	margin-right: 2px;
	vertical-align: top;

	font-weight: bold;
}
.value {
	word-break: break-word;
}
.value ul {
	margin: 0;
	padding-left: 0;

	list-style-type: none;
}
.value li::before {
	margin: 0 6px 0 2px;

	content: '\2022';
}
.path {
	margin-top: 2px;

	font-family: monospace;
	word-break: break-word;
}
div.path {
	opacity: 0.8;
}

.hidden {
	display: none;
}

.header-small {
	margin-left: 2px;
}
.header-small:not(:first-child) {
	margin-top: 8px;
}