/* These are third party stylesheets */
@import 'simplescrollbar.css';
@import 'fontawesome/all.min.css';

/* 
The following stylesheet is generated from sass
----------------------------------------
to compile run the following command in the terminal within your environment:
python manage.py sass affiliate_capital_loan_trading_platform/static/sass/index.scss affiliate_capital_loan_trading_platform/static/css/project_scss.css --watch
*/
/* @import 'project_scss.css'; */

@import 'index.css';

.alert-success{
    -moz-animation: cssAnimation 0s ease-in 5s forwards;
    -webkit-animation: cssAnimation 0s ease-in 5s forwards;
    -o-animation: cssAnimation 0s ease-in 5s forwards;
    animation: cssAnimation 0s ease-in 5s forwards;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
}
@keyframes cssAnimation {
    to {
        width:0;
        height:0;
        padding: 0;
        margin: 0;
        overflow:hidden;
    }
}
@-webkit-keyframes cssAnimation {
    to {
        width:0;
        height:0;
        padding: 0;
        margin: 0;
        display:none;
    }
}