.sbl-mlp-overlay {
	align-items: center;
	background: rgba(0, 0, 0, 0.82);
	box-sizing: border-box;
	display: flex;
	inset: 0;
	justify-content: center;
	padding: 24px;
	position: fixed;
	z-index: 2147483000;
}

.sbl-mlp-panel {
	align-items: center;
	display: flex;
	justify-content: center;
	max-height: calc(100vh - 48px);
	max-width: min(1100px, calc(100vw - 48px));
	position: relative;
}

.sbl-mlp-media {
	background: #000;
	border: 0;
	display: block;
	height: auto;
	margin: 0;
	max-height: calc(100vh - 48px);
	max-width: 100%;
	object-fit: contain;
	width: auto;
}

.sbl-mlp-close {
	align-items: center;
	background: #fff;
	border: 2px solid #222;
	border-radius: 50%;
	color: #111;
	cursor: pointer;
	display: flex;
	font-family: Arial, sans-serif;
	font-size: 30px;
	font-weight: 400;
	height: 42px;
	justify-content: center;
	line-height: 1;
	margin: 0;
	padding: 0 0 3px;
	position: absolute;
	right: -18px;
	top: -18px;
	width: 42px;
	z-index: 2;
}

.sbl-mlp-close:hover,
.sbl-mlp-close:focus {
	background: #f2f2f2;
	color: #000;
	outline: 3px solid #4da3d9;
	outline-offset: 2px;
}

@media (max-width: 600px) {
	.sbl-mlp-overlay {
		padding: 14px;
	}

	.sbl-mlp-panel {
		max-height: calc(100vh - 28px);
		max-width: calc(100vw - 28px);
	}

	.sbl-mlp-media {
		max-height: calc(100vh - 28px);
	}

	.sbl-mlp-close {
		height: 38px;
		right: -8px;
		top: -8px;
		width: 38px;
	}
}

