/* Confirmation slider for phone and messenger links.
   Shipped as a real stylesheet so a strict style-src CSP cannot block it. */

.pmt-overlay {
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 2147483647;
	background: rgba(15, 23, 42, .54);
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 18px;
}

.pmt-modal {
	width: 420px;
	max-width: 100%;
	box-sizing: border-box;
	background: #fff;
	border-radius: 24px;
	padding: 24px;
	font-family: system-ui, -apple-system, "Segoe UI", Arial, sans-serif;
	color: #1f2a37;
	box-shadow: 0 25px 90px rgba(0, 0, 0, .28);
}

.pmt-top {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 14px;
	margin-bottom: 10px;
}

.pmt-title {
	font-size: 20px;
	font-weight: 800;
	line-height: 1.2;
}

.pmt-close {
	flex: 0 0 auto;
	border: 0;
	background: #eef3f7;
	border-radius: 50%;
	width: 34px;
	height: 34px;
	font-size: 20px;
	line-height: 1;
	color: #1f2a37;
	cursor: pointer;
}

.pmt-text {
	margin: 0 0 18px;
	font-size: 15px;
	line-height: 1.35;
	color: #55606e;
}

.pmt-track {
	position: relative;
	height: 58px;
	border-radius: 999px;
	background: #e6eef5;
	overflow: hidden;
	user-select: none;
	-webkit-user-select: none;
	touch-action: none;
}

.pmt-fill {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	width: 0;
	border-radius: 999px;
	background: var(--pmt-accent-2, #0a5fa8);
}

.pmt-label {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 15px;
	font-weight: 700;
	color: #0a5fa8;
	pointer-events: none;
}

.pmt-done .pmt-label {
	color: #fff;
}

.pmt-knob {
	position: absolute;
	top: 5px;
	left: 5px;
	width: 48px;
	height: 48px;
	border-radius: 50%;
	background: #fff;
	color: var(--pmt-accent-2, #0a5fa8);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 20px;
	font-weight: 800;
	box-shadow: 0 8px 22px rgba(0, 0, 0, .18);
	cursor: grab;
	touch-action: none;
}

.pmt-knob:focus-visible {
	outline: 3px solid var(--pmt-accent-2, #0a5fa8);
	outline-offset: 2px;
}

.pmt-hint {
	margin-top: 8px;
	font-size: 12px;
	text-align: center;
	color: #5f6b78;
}

.pmt-fallback {
	display: block;
	margin-top: 14px;
	font-size: 20px;
	font-weight: 800;
	color: var(--pmt-accent-2, #0a5fa8);
	text-align: center;
	word-break: break-all;
}

.pmt-scroll-lock {
	overflow: hidden !important;
}

@media (prefers-reduced-motion: reduce) {
	.pmt-knob {
		transition: none !important;
	}
}
