﻿/*.list-stats {

    @media(max-width:578px) {
        display: block;
    }

    li {
        @media(max-width:578px) {
            max-width: none;
            margin: 50px 0;
        }

        .stat-num1 {
            position: relative;
            opacity: 0;
        }

        .animate-stat-num1 {
            animation: .75s stat-top ease-in forwards;
        }

        @keyframes stat-top {
            from {
                opacity: 0;
                top: -75px;
            }

            to {
                opacity: 1;
                top: 0px;
            }
        }

        .stat-num2 {
            position: relative;
            opacity: 0;
        }

        .animate-stat-num2 {
            animation: .75s stat-bottom ease-in forwards;
        }

        @keyframes stat-bottom {
            from {
                opacity: 0;
                bottom: -75px;
            }

            to {
                opacity: 1;
                bottom: 0px;
            }
        }
    }
}

.widget-stats {
    .title + ul {
        @media(max-width:578px) {
            margin: 75px 0 0;
        }
    }

    .disclaimer {
        color: #9C9C9C;
        margin-top: 75px;
    }

    .title {
        opacity: 0;
    }

    .title-fade-in {
        animation: title-fade-in 2s forwards;

        &:after {
            animation: section-line-out 1s forwards;
        }
    }

    @keyframes title-fade-in {
        from {
            opacity: 0;
        }

        to {
            opacity: 1;
        }
    }

    @keyframes section-line-out {
        from {
            opacity:0;
            width:0;
        }

        to {
            opacity:1;
            width:145px;
        }
    }
}*/
