.al-overlay {
	position: fixed;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background: rgba(0, 0, 0, 0.7);
	transition: opacity 200ms;
	visibility: hidden;
	opacity: 0;
	z-index: 1049;
	display: flex;
    align-items: center;
    justify-content: center;
}
.al-overlay:target {
	visibility: visible;
	opacity: 1;
}
.al-popup {
	overflow: hidden;
	padding: 48px 16px 16px;
	background: #fff;
	width: 100vw;
	height: 100vh;
	position: relative;	
	transition: all .2s ease-in-out;
	font-weight: 400;
	font-size: 14px;
	line-height: 140%;
	letter-spacing: 0.25px;
	color: #333;
}
.al-popup__close {
	position: absolute;
	top: 12px;
	right: 24px;
	transition: all 200ms;
	font-size: 30px;
	font-weight: 400;
	text-decoration: none;
	color: #333;
	line-height: 1;
}
.al-popup__close:hover {
	color: #FB562C;
}
.al-popup__pole {
	overflow-y: auto;
	height: 100%;
}
.al-popup--note {
	font-weight: 400;
	font-size: 12px;
	line-height: 140%;
	letter-spacing: 0.25px;
	color: #6E838E;
}
@media (min-width: 1025px) {
	.al-popup {
		padding: 48px 24px 24px;
		max-width: 956px;
		height: 80%;
		box-shadow: 0px 4px 16px rgba(0, 0, 0, 0.1);
		border-radius: 6px;
	}
}