.dgfn-modal-open {
	overflow: hidden;
}

.dgfn-lead-modal {
	position: fixed;
	inset: 0;
	z-index: 99999;
	display: grid;
	place-items: center;
	padding: 1rem;
}

.dgfn-lead-modal[hidden] {
	display: none;
}

.dgfn-lead-modal__backdrop {
	position: absolute;
	inset: 0;
	background: rgba(14, 26, 58, .72);
}

.dgfn-lead-modal__dialog {
	position: relative;
	z-index: 1;
	width: min(720px, calc(100vw - 2rem));
	max-height: calc(100vh - 2rem);
	overflow: auto;
	border-radius: 12px;
	background: #fff;
	box-shadow: 0 24px 70px rgba(0, 0, 0, .28);
}

.dgfn-lead-modal__dialog .dgfn-form {
	max-width: none;
	border: 0;
	box-shadow: none;
}

.dgfn-lead-modal__close {
	position: absolute;
	top: .7rem;
	right: .8rem;
	z-index: 2;
	width: 2rem;
	height: 2rem;
	border: 0;
	border-radius: 50%;
	background: #0E1A3A;
	color: #fff;
	font-size: 1.4rem;
	line-height: 1;
	cursor: pointer;
}

@media (max-width: 620px) {
	.dgfn-lead-modal {
		padding: .5rem;
	}

	.dgfn-lead-modal__dialog {
		width: calc(100vw - 1rem);
		max-height: calc(100vh - 1rem);
	}
}
