.overlay {
	display: none;
	position: fixed;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	background: rgba(233,233,233, 0.4);
	z-index: 100;
	width: 100%;
	height: 100%;
	box-sizing: border-box;
	top: 0;
	left: 0;
	animation: fadein 0.3s;
	cursor: default;
	overflow: auto;
}

.overlay .container {
	position: relative;
	background: rgba(30,31,33,1);
	background: rgba(var(--bg-r),var(--bg-g),var(--bg-b),1);
	box-shadow: 0 8px 24px rgba(0,0,0,0.25);
	max-width: 100%;
}

.overlay .titlebar {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 56px;
	background: rgba(0,0,0,0.3);
	font-weight: 600;
}

.overlay .titlebar .logo {
	height: 36px;
}

.overlay .titlebar .title {
	font-weight: 700;
}

.overlay .titlebar .cancel {
	display: flex;
	align-items: center;
	justify-content: center;
	position: absolute;
	height: 56px;
	width: 56px;
	top: 0;
	right: 0;
}

.overlay .cancel::before {
	content: '×';
	font-size: 200%;
	font-weight: 500;
	line-height: 0;
}

@media only screen and (max-height: 600px) {
	
	.overlay.source-info {
		justify-content: flex-start;
	}
	
}