.transition1 {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    bottom: 0;
    z-index: 101;
    background: linear-gradient(90deg, #788FBF 0%, #9781CC 100%);
    transition: 0.4s ease-in-out;
}

.transition1.isActive {
    left: 0px;
}

.transition2 {
    position: fixed;
    top: 0;
    left: 100%;
    width: 100%;
    bottom: 0;
    z-index: 101;
    background: linear-gradient(90deg, #788FBF 0%, #9781CC 100%);
    transition: 0.4s ease-in-out;
}

.transition2.isActive {
    left: 0px;
}

.transition3 {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 100%;
    z-index: 101;
    background: linear-gradient(90deg, #788FBF 0%, #9781CC 100%);
    transition: 0.5s;
}

.transition3.isActive {
    bottom: 0px;
    width: 100%;
}

.transition4 {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    top: 100%;
    z-index: 101;
    background: linear-gradient(90deg, #788FBF 0%, #9781CC 100%);
    transition: 0.5s;
}

.transition4.isActive {
    top: 0px;
    width: 100%;
}

.transition5 {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 101;
    background: linear-gradient(90deg, #788FBF 0%, #9781CC 100%);
    opacity: 0;
    pointer-events: none;
    transition: 0.5s;
}

.transition5.isActive {
    opacity: 1;
    pointer-events: all;
}

.transitionPlaceholder {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 101;
    background: linear-gradient(90deg, #788FBF 0%, #9781CC 100%);
    opacity: 1;
    pointer-events: none;
    transition: 0s;
}