
/* ========================================================
   The skillbars
   ===================================================== */

.skillbars {
    width: 350px;

}

.skillbar {
    font-size: 14px;
    /*color: #111;*/
    /*width:100%;*/
    text-align: left;
    text-indent: 6px;
    position: relative;
    height: 29px;
    /*
    border-radius: 4px;
    border: 1px #111 solid;
    */
    -webkit-transition: 0.4s linear;
    -moz-transition: 0.4s linear;
    -ms-transition: 0.4s linear;
    -o-transition: 0.4s linear;
    transition: 0.4s linear;
    -webkit-transition-property: width, background-color;
    -moz-transition-property: width, background-color;
    -ms-transition-property: width, background-color;
    -o-transition-property: width, background-color;
    transition-property: width, background-color;
    /*
    -webkit-box-shadow: 0 0 1px 1px rgba(0, 0, 0, 0.25), inset 0 1px rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 1px 1px rgba(0, 0, 0, 0.25), inset 0 1px rgba(255, 255, 255, 0.1);
    */
    /*background-color: #898989;*/
    background-color: transparent;
}
.skillbar:before, .skillbar:after {
    content: '';
    top: 0;
    right: 0;
    left: 0;
    position: absolute;
}
.skillbar:before {
    bottom: 0;
    z-index: 2;
    /*border-radius: 4px 4px 0 0;*/
}
.skillbar:after {
    bottom: 45%;
    z-index: 3;
    border-radius: 0px;
    background-color: transparent;
    background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgba(255, 255, 255, 0.3)), color-stop(100%, rgba(255, 255, 255, 0.05)));
    background-image: -webkit-linear-gradient(top, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.05));
    background-image: -moz-linear-gradient(top, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.05));
    background-image: -ms-linear-gradient(top, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.05));
    background-image: -o-linear-gradient(top, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.05));
    background-image: linear-gradient(top, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.05));
}
.bar {
    position:absolute;
    display:block;
    max-width: 100%;
    /*max-width: 97.5%;*/
    width:0px;
    height:25px;
    top:3px;
    left:4px;
    border:1px solid rgba(0,0,0,0.8);


    /*-webkit-border-radius:16px;*/
    /*border-radius:16px;*/
}
.bar span{
    color:white;
    padding-bottom: 5px;

}
.skillbars p {
    margin: 6px 0 2px 4px;
    font-size: small;
    text-align: left;
    color:black;
}

/* ========================================================
   Individule Skill Colors
   ===================================================== */
.skill-all {
    background: #557198;
    background: -webkit-linear-gradient(left, #557198 , #739ac8); /* For Safari 5.1 to 6.0 */
    background: -o-linear-gradient(right, #557198, #739ac8); /* For Opera 11.1 to 12.0 */
    background: -moz-linear-gradient(right, #557198, #739ac8); /* For Firefox 3.6 to 15 */
    background: linear-gradient(to right, #557198 , #739ac8); /* Standard syntax */

}

/* change width on different screen sizes (col-6) */
@media screen and (max-width: 450px) {
    .skillbars {
        width: 300px;
    }

}