.msc-pwa-sheet-overlay {
	position: fixed;
	inset: 0;
	z-index: 2147483000;
	display: flex;
	align-items: flex-end;
	justify-content: center;
	padding: 18px;
	background: rgba(10, 15, 14, 0.34);
	backdrop-filter: blur(6px);
	-webkit-backdrop-filter: blur(6px);
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.22s ease, visibility 0.22s ease;
}

.msc-pwa-sheet-overlay.is-visible {
	opacity: 1;
	visibility: visible;
}

.msc-pwa-sheet {
	--msc-pwa-theme: #1F3A35;
	width: min(100%, 520px);
	padding: 24px;
	border-radius: 28px;
	background: #fff;
	box-shadow: 0 24px 80px rgba(0, 0, 0, 0.18);
	transform: translateY(32px);
	transition: transform 0.22s ease;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
	color: #1d1d1d;
}

.msc-pwa-sheet-overlay.is-visible .msc-pwa-sheet {
	transform: translateY(0);
}

.msc-pwa-sheet__head {
	display: grid;
	grid-template-columns: 56px minmax(0, 1fr);
	gap: 16px;
	align-items: center;
}

.msc-pwa-sheet__icon {
	width: 56px;
	height: 56px;
	border-radius: 15px;
	object-fit: cover;
	box-shadow: 0 7px 18px rgba(0, 0, 0, 0.1);
}

.msc-pwa-sheet__title {
	margin: 0 0 5px;
	font-size: 21px;
	line-height: 1.15;
	font-weight: 750;
	color: var(--msc-pwa-theme);
}

.msc-pwa-sheet__text {
	margin: 0;
	font-size: 14px;
	line-height: 1.5;
	color: #626262;
}

.msc-pwa-sheet__steps {
	margin: 22px 0 0;
	padding: 18px 18px 18px 40px;
	border-radius: 18px;
	background: #f5f5f3;
	font-size: 14px;
	line-height: 1.6;
	color: #343434;
}

.msc-pwa-sheet__steps li + li {
	margin-top: 7px;
}

.msc-pwa-sheet__actions {
	display: flex;
	gap: 10px;
	margin-top: 20px;
}

.msc-pwa-sheet__primary,
.msc-pwa-sheet__secondary,
.msc-pwa-install-trigger {
	appearance: none;
	-webkit-appearance: none;
	border: 0;
	border-radius: 999px;
	padding: 13px 20px;
	font: inherit;
	font-size: 14px;
	font-weight: 700;
	cursor: pointer;
}

.msc-pwa-sheet__primary,
.msc-pwa-install-trigger {
	background: var(--msc-pwa-theme, #1F3A35);
	color: #fff;
}

.msc-pwa-sheet__secondary {
	background: #efefed;
	color: #303030;
}

.msc-pwa-sheet__actions > * {
	flex: 1;
}

@media (min-width: 700px) {
	.msc-pwa-sheet-overlay {
		align-items: center;
	}
}

@media (prefers-reduced-motion: reduce) {
	.msc-pwa-sheet-overlay,
	.msc-pwa-sheet {
		transition: none;
	}
}
