.angie-pt-overlay-84933477 {
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	background-color: #61616101; /* Updated color */
	z-index: 999999;
	pointer-events: none;
	visibility: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
}

.angie-pt-logo-84933477 {
	max-width: 150px;
	height: auto;
	opacity: 0;
	transform: scale(0.8);
	transition: all 0.3s ease;
}

.angie-pt-overlay-84933477.is-active .angie-pt-logo-84933477 {
	opacity: 1;
	transform: scale(1);
}

/* Fade */
.angie-pt-overlay-84933477[data-type="fade"] {
	opacity: 0;
}
.angie-pt-overlay-84933477[data-type="fade"].is-active {
	visibility: visible;
	opacity: 1;
	pointer-events: all;
}

/* Slide Up */
.angie-pt-overlay-84933477[data-type="slide"] {
	transform: translateY(100%);
}
.angie-pt-overlay-84933477[data-type="slide"].is-active {
	visibility: visible;
	transform: translateY(0);
	pointer-events: all;
}

/* Curtain */
.angie-pt-overlay-84933477[data-type="curtain"] {
	transform: scaleY(0);
	transform-origin: top;
}
.angie-pt-overlay-84933477[data-type="curtain"].is-active {
	visibility: visible;
	transform: scaleY(1);
	pointer-events: all;
}

/* Zoom effect is applied to body */
body.angie-pt-zoom-out-84933477 {
	transform: scale(0.95);
	opacity: 0;
}
