/* Appearing div from top to bottom */
@keyframes scale-up-ver-top {
    0% { visibility: visible;transform: scaleY(0); transform-origin: 100% 0%; }
    100% { visibility: visible;transform: scaleY(1); transform-origin: 100% 0%; }
}
.input-warn-animation {
    position: relative !important;
    animation: scale-up-ver-top 0.4s cubic-bezier(0.390, 0.575, 0.565, 1.000) 0s 1 normal both;
}
.input-warn {
    position: absolute;
    height: 30px;
    visibility: hidden;
}
.input-warn-text {
    font-size: 10px;
    margin: 0;
}
