	.add-pwa.no-nav {
		bottom: 30px;
	}
	.add-pwa {
		position: fixed;
		left: 50%;
		transform: translateX(-50%) translateY(calc(env(safe-area-inset-bottom)*10));
		bottom: 30px !important;
		width: 92%;
		max-width: 366px;
		border-radius: 6px;
		background: var(--white95);
		filter: drop-shadow(0 1px 3px rgba(0,0,0,.2));
		transition: transform .3s;
		z-index: 999999999;
		display:none;
		
	}
	.add-pwa__content {
		display: flex;
		flex-direction: column;
		padding: 18px;
		position: relative;
	}
	.add-pwa__content h1 {
		font-weight: 600;
		font-size: 20px;
		line-height: 26px;
		text-align: center;
		color: var(--c-base-text);
		margin-bottom: 16px;
	}
	.add-pwa__items {
		display: flex;
		justify-content: center;
	}
	.add-pwa__close {
		position: absolute;
		top: 0;
		right: 0;
	}
	button {
		overflow: visible;
		text-transform: none;
		-webkit-appearance: button;
		background: none;
		border: 0;
		outline: 0;
		padding: 0;
		cursor: pointer;
	}
	.add-pwa__content:after {
		content: "";
		position: absolute;
		top: 100%;
		left: 50%;
		transform: translateX(-50%);
		border: 10px solid transparent;
		border-bottom: none;
		border-top: 13px solid var(--white95);
		width: 0;
		height: 0;
	}
	.add-pwa__item {
		display: flex;
		flex-shrink: 0;
	}
	.add-pwa__item__inner {
		display: flex;
		flex-direction: column;
		align-items: center;
		width: 88px;
	}

	.add-pwa__item__icon {
		width: 50px;
		height: 50px;
		background: var(--white95);
		border-radius: 50%;
		filter: drop-shadow(1px 1px 4px rgba(0,0,0,.1));
		display: flex;
		align-items: center;
		justify-content: center;
	}

	.add-pwa__item svg {
		margin: 22px 0;
		flex-shrink: 0;
	}
	.add-pwa__item:first-child img {
		width: 30px;
		height: 30px;
		margin-bottom: 4px;
	}
	img {
		-webkit-user-select: none;
		-webkit-touch-callout: none;
		transform: translateZ(0);
	}

	.add-pwa__item span {
		margin-top: 10px;
		font-size: 14px;
		line-height: 22px;
		text-align: center;
		color: var(--black);
	}
	@media (min-width: 350px) {
		.add-pwa__item svg {
			margin: 22px 7px;
		}
		.add-pwa__item span {
			font-size: 16px;
		}
		.add-pwa__item span {
			font-size: 16px;
		}
		.add-pwa__item__icon {
			width: 54px;
			height: 54px;
		}

	}