.admin-page .admin-panel .main .student-row .cell .error-popup {
}


.admin-page .admin-panel .main .student-row .cell .error-popup.expand {
    transform-origin: top;
    animation-name: expand;
    animation-duration: .222s;
    animation-timing-function: ease-in;
}

@keyframes expand {
    0% {
	    transform: scaleY(0);
	    opacity: 0;
    }
    100% {
	    transform: scaleY(1);
	    opacity: 1;
    }
}