﻿@import url('https://fonts.googleapis.com/css?family=Open+Sans+Condensed:300,300i,700');

.skills {
    width: inherit;
    position: relative;
    float: left;
    padding: 30px 0;
}

    .skills ul {
        padding-top: 30px;
    }

        .skills ul > li {
            margin-bottom: 50px;
            background: #dedede;
            height: 6px;
        }

            .skills ul > li em {
                font-size: 18px;
                position: relative;
                top: -30px;
            }

            .skills ul > li span {
                height: inherit;
                background-color: #94c245;
                background: linear-gradient(90deg, #76b82a, #aecd60);
                position: absolute;
            }

    .skills .item {
        animation: item 2s ease-out;
    }

    .skills .html5 {
        width: 90%;
        animation: html5 2s ease-out;
    }

    .skills .css3 {
        width: 80%;
        animation: css3 2s ease-out;
    }

    .skills .js {
        width: 50%;
        animation: js 2s ease-out;
    }

    .skills .jquery {
        width: 60%;
        animation: jquery 2s ease-out;
    }

    .skills .wordpress {
        width: 50%;
        animation: wordpress 2s ease-out;
    }

    .skills .magento {
        width: 60%;
        animation: magento 2s ease-out;
    }

    .skills .photoshop {
        width: 90%;
        animation: photoshop 2s ease-out;
    }

    .skills .illustrator {
        width: 80%;
        animation: illustrator 2s ease-out;
    }
.progress-title {
    font-size: 16px;
    font-weight: 700;
    color: #333;
}

.progress {
    height: 10px;
    background: #333;
    border-radius: 0;
    box-shadow: none;
    margin-bottom: 30px;
    overflow: visible
}

    .progress .progress-bar {
        /*position: relative;
        -webkit-animation: animate-positive 2s;
        animation: animate-positive 2s*/
        width: 0%;
        transition: width;
        transition-duration: 1s;
    }

    .progress .progress-value {
        display: block;
        font-size: 18px;
        font-weight: 500;
        color: black;
        position: absolute;
        top: -30px;
        right: -25px
    }
