.transition-1 {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9000;
    background-color: rgb(0, 0, 0);
    opacity: 0;
    pointer-events: none;
    transition: 0.5s ease-in-out;
    max-width: 100%;
}

.transition-1.is-active {
    opacity: 1;
    pointer-events: all;
    transition: 0.3s ease-in-out;
}