.dc-hotline-popover {
	position: fixed;
	z-index: 100000;
	width: min(264px, calc(100vw - 28px));
	padding: 10px;
	border: 1px solid #e5e7eb;
	border-radius: 12px;
	background: #ffffff;
	box-shadow: 0 14px 32px rgba(15, 23, 42, 0.2);
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transform: translateX(10px);
	transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease;
}

.dc-hotline-popover.is-open {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
	transform: translateX(0);
}

.dc-hotline-popover__heading {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	padding: 3px 4px 9px;
	color: #172033;
	font-size: 15px;
	font-weight: 700;
	line-height: 1.35;
}

.dc-hotline-popover__close {
	display: inline-grid;
	width: 28px;
	height: 28px;
	padding: 0;
	border: 0;
	border-radius: 50%;
	background: #f1f5f9;
	color: #475569;
	font-size: 22px;
	line-height: 1;
	place-items: center;
	cursor: pointer;
}

.dc-hotline-popover__close:hover,
.dc-hotline-popover__close:focus-visible {
	background: #fee2e2;
	color: #dc2626;
	outline: none;
}

.dc-hotline-popover__list {
	display: grid;
	gap: 7px;
}

.dc-hotline-popover__item {
	display: grid;
	grid-template-columns: 34px minmax(0, 1fr);
	gap: 10px;
	align-items: center;
	padding: 9px 10px;
	border: 1px solid #e2e8f0;
	border-radius: 9px;
	background: #ffffff;
	color: #172033;
	text-decoration: none;
	transition: border-color 150ms ease, background-color 150ms ease, transform 150ms ease;
}

.dc-hotline-popover__item:hover,
.dc-hotline-popover__item:focus-visible {
	border-color: #f87171;
	background: #fff7f7;
	color: #172033;
	outline: none;
	transform: translateY(-1px);
}

.dc-hotline-popover__icon {
	display: inline-grid;
	width: 34px;
	height: 34px;
	border-radius: 50%;
	background: #e32222;
	color: #ffffff;
	font-size: 17px;
	font-weight: 700;
	line-height: 1;
	place-items: center;
}

.dc-hotline-popover__location,
.dc-hotline-popover__number {
	display: block;
}

.dc-hotline-popover__location {
	margin-bottom: 1px;
	color: #64748b;
	font-size: 12px;
	font-weight: 600;
	line-height: 1.25;
}

.dc-hotline-popover__number {
	color: #172033;
	font-size: 15px;
	font-weight: 700;
	line-height: 1.25;
}

@media (max-width: 480px) {
	.dc-hotline-popover {
		padding: 9px;
		border-radius: 10px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.dc-hotline-popover,
	.dc-hotline-popover__item {
		transition: none;
	}
}
