body.lead-widget-popup-open {
	overflow: hidden !important;
}

.lead-widget-popup {
	position: fixed !important;
	top: 0 !important;
	right: 0 !important;
	bottom: 0 !important;
	left: 0 !important;
	width: 100% !important;
	height: 100% !important;
	z-index: 999999 !important;
	display: none;
	align-items: center;
	justify-content: center;
	padding: 20px;
	box-sizing: border-box;
	background: rgba(10, 10, 18, 0.72);
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transition: opacity 0.3s ease, visibility 0.3s ease;
}

.lead-widget-popup.is-visible {
	display: flex !important;
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
}

.lead-widget-popup__dialog {
	position: relative;
	width: 100%;
	max-width: 820px;
	max-height: calc(100vh - 40px);
	overflow: auto;
	margin: auto;
}

.lead-widget-popup__close {
	position: absolute;
	top: 12px;
	right: 12px;
	z-index: 2;
	width: 36px;
	height: 36px;
	border: 0;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.12);
	color: #fff;
	font-size: 22px;
	line-height: 1;
	cursor: pointer;
	transition: background 0.15s ease;
}

.lead-widget-popup__close:hover {
	background: rgba(255, 255, 255, 0.22);
}

.lead-widget-popup__mount {
	min-height: 1px;
}
