.pt-5374-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	background-color: #ffffff;
	z-index: 999999;
	pointer-events: none;
	opacity: 0;
	visibility: hidden;
}

body.pt-5374-animating .pt-5374-overlay {
	visibility: visible;
}

/* Fade */
.pt-5374-overlay.pt-5374-type-fade {
	opacity: 0;
}
body.pt-5374-animating .pt-5374-overlay.pt-5374-type-fade {
	opacity: 1;
}

/* Slide Up */
.pt-5374-overlay.pt-5374-type-slide-up {
	transform: translateY(100%);
	opacity: 1;
}
body.pt-5374-animating .pt-5374-overlay.pt-5374-type-slide-up {
	transform: translateY(0);
}

/* Slide Down */
.pt-5374-overlay.pt-5374-type-slide-down {
	transform: translateY(-100%);
	opacity: 1;
}
body.pt-5374-animating .pt-5374-overlay.pt-5374-type-slide-down {
	transform: translateY(0);
}

/* Zoom In */
.pt-5374-overlay.pt-5374-type-zoom-in {
	transform: scale(0);
	opacity: 1;
}
body.pt-5374-animating .pt-5374-overlay.pt-5374-type-zoom-in {
	transform: scale(1);
}

/* Zoom Out */
.pt-5374-overlay.pt-5374-type-zoom-out {
	transform: scale(2);
	opacity: 0;
}
body.pt-5374-animating .pt-5374-overlay.pt-5374-type-zoom-out {
	transform: scale(1);
	opacity: 1;
}

/* Initial state (page load) */
html.pt-5374-loading body .pt-5374-overlay {
	visibility: visible;
	opacity: 1;
	transform: none;
}