.wdy-pwa-install-prompt[hidden] {
	display: none !important;
}

.wdy-pwa-install-prompt {
	position: fixed;
	z-index: 999999;
	right: 18px;
	bottom: 18px;
	left: 18px;
	display: grid;
	grid-template-columns: auto minmax(0, 1fr) auto;
	gap: 16px;
	align-items: center;
	width: min(760px, calc(100% - 36px));
	margin-left: auto;
	padding: 18px;
	border: 1px solid #171716;
	border-left: 5px solid #ffc83d;
	background: #fff;
	box-shadow: 0 18px 50px rgb(23 23 22 / 18%);
	color: #171716;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	font-size: 16px;
	line-height: 1.45;
}

.wdy-pwa-install-prompt__icon {
	display: grid;
	place-items: center;
	width: 52px;
	height: 52px;
	overflow: hidden;
	border: 1px solid #dfdfda;
	background: #f7f7f5;
	font-size: 24px;
	font-weight: 800;
}

.wdy-pwa-install-prompt__icon img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.wdy-pwa-install-prompt__copy strong {
	display: block;
	margin: 0 0 4px;
	font-size: 17px;
	line-height: 1.25;
}

.wdy-pwa-install-prompt__copy p {
	margin: 0;
	color: #565650;
	font-size: 14px;
	line-height: 1.5;
}

.wdy-pwa-install-prompt__actions {
	display: flex;
	gap: 8px;
	align-items: center;
}

.wdy-pwa-install-prompt__actions button {
	min-height: 42px;
	padding: 9px 14px;
	border: 1px solid #171716;
	border-radius: 0;
	font: inherit;
	font-size: 14px;
	font-weight: 700;
	cursor: pointer;
}

.wdy-pwa-install-prompt__install {
	background: #ffc83d;
	color: #171716;
}

.wdy-pwa-install-prompt__later {
	background: #fff;
	color: #171716;
}

.wdy-pwa-install-prompt__actions button:focus-visible {
	outline: 3px solid #2271b1;
	outline-offset: 2px;
}

@media (max-width: 640px) {
	.wdy-pwa-install-prompt {
		grid-template-columns: auto minmax(0, 1fr);
		align-items: start;
		padding: 15px;
	}

	.wdy-pwa-install-prompt__actions {
		grid-column: 1 / -1;
		justify-content: stretch;
	}

	.wdy-pwa-install-prompt__actions button {
		flex: 1;
	}
}
