.tlmap-prompt[hidden] {
	display: none !important;
}

.tlmap-prompt {
	position: fixed;
	z-index: 999999;
	inset: 0;
	display: flex;
	align-items: flex-end;
	justify-content: center;
	padding: 16px;
	background: rgba(0, 0, 0, 0.45);
}

.tlmap-card {
	position: relative;
	width: min(100%, 420px);
	padding: 22px;
	border-radius: 18px;
	background: #fff;
	box-shadow: 0 18px 50px rgba(0, 0, 0, 0.24);
	color: #202020;
	font-family: inherit;
}

.tlmap-heading {
	display: flex;
	align-items: center;
	gap: 14px;
	padding-right: 24px;
}

.tlmap-icon {
	width: 64px;
	height: 64px;
	flex: 0 0 64px;
	border-radius: 14px;
	object-fit: cover;
}

.tlmap-heading h2 {
	margin: 0 0 5px;
	font-size: 21px;
	line-height: 1.2;
}

.tlmap-heading p,
.tlmap-ios p,
.tlmap-android-help {
	margin: 0;
	font-size: 15px;
	line-height: 1.45;
}

.tlmap-android-help {
	margin-top: 12px;
	padding: 11px;
	border-radius: 8px;
	background: #f3f7f4;
}

.tlmap-close {
	position: absolute;
	top: 8px;
	right: 10px;
	width: 36px;
	height: 36px;
	padding: 0;
	border: 0;
	background: transparent;
	color: #555;
	font-size: 28px;
	line-height: 1;
	cursor: pointer;
}

.tlmap-install,
.tlmap-understood,
.tlmap-enable-notifications {
	width: 100%;
	margin-top: 18px;
	padding: 13px 18px;
	border: 0;
	border-radius: 10px;
	background: #37734a;
	color: #fff;
	font: inherit;
	font-weight: 700;
	cursor: pointer;
}

.tlmap-later {
	display: block;
	margin: 13px auto 0;
	padding: 4px 10px;
	border: 0;
	background: transparent;
	color: #555;
	font: inherit;
	cursor: pointer;
}

.tlmap-already-installed {
	display: block;
	margin: 10px auto 0;
	padding: 4px 10px;
	border: 0;
	background: transparent;
	color: #37734a;
	font: inherit;
	font-weight: 600;
	cursor: pointer;
}

.tlmap-ios {
	margin-top: 17px;
	padding: 14px;
	border-radius: 10px;
	background: #f3f7f4;
}

@media (min-width: 600px) {
	.tlmap-prompt {
		align-items: center;
	}
}

@media (prefers-reduced-motion: no-preference) {
	.tlmap-card {
		animation: tlmap-slide-in 220ms ease-out;
	}

	@keyframes tlmap-slide-in {
		from {
			opacity: 0;
			transform: translateY(18px);
		}
		to {
			opacity: 1;
			transform: translateY(0);
		}
	}
}
