@keyframes fadein {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes red-flash-fadeout {
    0% {
        background-color: red;
        opacity: 1;
    }
    50% {
        background-color: red;
        opacity: 1;
    }
    100% {
        background-color: transparent;
        opacity: 0;
        display: none;
    }
}

.new-question {
    animation: fadein 0.5s ease-out;
}

.delete-question {
    animation: red-flash-fadeout 1s;
    -moz-animation: red-flash-fadeout 1s; /* Firefox */
    -webkit-animation: red-flash-fadeout 1s; /* Safari and Chrome */
    -o-animation: red-flash-fadeout 1s; /* Opera */
    padding: 0 0 0 0;
}

.wb-question {
    transition: transform 0.3s ease-in-out;
    will-change: transform;
    position: relative;
    z-index: 1;
}

.question-moving {
    transform: scale(0.98);
    /*box-shadow: 0 0 10px rgba(0,0,0,0.2);*/
    z-index: 2;
}

.motion-blur-effect {
    -webkit-filter: blur(1px);
    -moz-filter: blur(1px);
    -o-filter: blur(1px);
    -ms-filter: blur(1px);
    filter: blur(1px);
}
