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

.pt-overlay-11381.pt-active {
    visibility: visible;
    pointer-events: all;
}

/* Fade */
.pt-overlay-11381.pt-effect-fade {
    opacity: 0;
}
.pt-overlay-11381.pt-effect-fade.pt-active {
    opacity: 1;
}

/* Slide Up */
.pt-overlay-11381.pt-effect-slide {
    transform: translateY(100%);
}
.pt-overlay-11381.pt-effect-slide.pt-active {
    transform: translateY(0);
}

/* Zoom */
.pt-overlay-11381.pt-effect-zoom {
    transform: scale(0);
    opacity: 0;
}
.pt-overlay-11381.pt-effect-zoom.pt-active {
    transform: scale(1);
    opacity: 1;
}

/* Curtain */
.pt-overlay-11381.pt-effect-curtain {
    background: transparent;
    display: flex;
}
.pt-overlay-11381.pt-effect-curtain .pt-curtain-left,
.pt-overlay-11381.pt-effect-curtain .pt-curtain-right {
    width: 50%;
    height: 100%;
    background: #ffffff;
    transition: transform inherit;
}
.pt-overlay-11381.pt-effect-curtain .pt-curtain-left {
    transform: translateX(-100%);
}
.pt-overlay-11381.pt-effect-curtain .pt-curtain-right {
    transform: translateX(100%);
}
.pt-overlay-11381.pt-effect-curtain.pt-active .pt-curtain-left,
.pt-overlay-11381.pt-effect-curtain.pt-active .pt-curtain-right {
    transform: translateX(0);
}
