.ae-light-scr, .ae-light-box, .ae-light-scr * .ae-light-box * {
	transition: 0.5s all;
}
.ae-light-scr {
	background: #0000008c;
	position: fixed;
	z-index: 99999;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	backdrop-filter: blur(10px) saturate(1.4);
	-webkit-backdrop-filter: blur(10px) saturate(1.3);
	opacity: 0;
	pointer-events: none;
	cursor: pointer;
}
.ae-light-scr.ok {
	opacity: 1;
	pointer-events: all;
}
/*body.lock {
	overflow: hidden;
	position: fixed;
}*/
.ae-light-box {
	min-height: 300px;
	max-width: 90%;
	max-height: 90%;
	width: fit-content;
	height: fit-content;
	display: block;
	background: #Fff;
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%) scale(0.01);
	z-index: 999999;
	border-radius: 8px;
	box-shadow: 0 0 20px 0 #0000005e;
	overflow: hidden;
	font-size: 0;
	opacity: 0;
	pointer-events: none;
}
.ae-light-box.ok {
	transform: translate(-50%, -50%) scale(1);
	opacity: 1;
	pointer-events: all;
}
.ae-light-box .ae-cont {
	line-height: 0;
}
.ae-light-box .ae-close {
	border-radius: 100px;
    width: 25px;
    height: 25px;
    position: absolute;
    top: 5px;
    right: 5px;
    background: #00000047;
	cursor: pointer;
}
.ae-light-box .ae-close::before, .ae-light-box .ae-close::after {
	content: '';
	display: block;
	width: 2px;
	height: 14px;
	position: absolute;
	top: 50%;
	left: 50%;
	background: #fff;
}
.ae-light-box .ae-close::before {
	transform: translate(-50%, -50%) rotate(45deg);
}
.ae-light-box .ae-close::after {
	transform: translate(-50%, -50%) rotate(-45deg);
}
.ae-light-box .ae-txt {
	font-size: 16px;
    width: calc(100% - 60px);
    display: block;
    margin: 30px auto;
    line-height: 1.5em;
    max-width: 650px;
}
body:not(.home) .ae-light-scr, body:not(.home) .ae-light-box {
	display:none!important
}