/* 
* @Author: Naomi
* @Date:   2018-08-18 17:09:20
* @Last Modified by:   Naomi
* @Last Modified time: 2018-08-18 17:34:00
*/
.probootstrap-animated {
    /*background: #eea;*/
    -webkit-animation: probsani 0.8s linear 0s  normal;
       -moz-animation: probsani 0.8s linear 0s  normal;
        -ms-animation: probsani 0.8s linear 0s  normal;
         -o-animation: probsani 0.8s linear 0s  normal;
            animation: probsani 0.8s linear 0s  normal;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}
@-webkit-keyframes probsani {
    0% { bottom: -50px;
        opacity: 0;
         /*display: none;*/     }
    100% { bottom: 0;
        opacity: 1;
     }
}
@-moz-keyframes probsani {
    0% { bottom: -50px;
        opacity: 0;
     }
    100% { bottom: 0;
        opacity: 1;
     }
}
@-ms-keyframes probsani {
    0% { bottom: -50px;
        opacity: 0;
     }
    100% { bottom: 0;
        opacity: 1;
     }
}
@-o-keyframes probsani {
    0% { bottom: -50px;
        opacity: 0;
     }
    100% { bottom: 0;
        opacity: 1;
     }
}
@keyframes probsani {
    0% { bottom: -50px;
        opacity: 0;
     }
    100% { bottom: 0;
        opacity: 1;
     }
}