.inner-show {
    -webkit-animation: innershow 800ms ease-in-out;
    -o-animation: innershow 800ms ease-in-out;
    animation: innershow 800ms ease-in-out;
}

@keyframes innershow {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
