I can't transition top/left/bottom/right on a div with this css:
 .question-part-1 {
        width: 260px;
        height: calc(100vh - 90px);
        position: absolute;
        background-color: #000891;
        box-shadow: 0 0 20px rgba(0,0,0,0.75);
        padding: 35px;
        z-index: 2;
        transition: all 300ms ease-in-out;
        &.disabled {
            background-color: #000891;
            height: calc(100vh - 130px);
            left: -70px;
            top: 40px;
            z-index: 1;
            h2, .option {
                opacity: 0.5;
            }
        }
    }
I am toggling the disabled class with jquery $('.question-part-1').toggleClass('disabled')
 
    