/**
 * Skills Progress Bar
*/

.fw-skills-bar {
}

.fw-skills-bar .progress {
    position: relative;
    height: 8px;
    margin-bottom: 0;
    border: none;
    border-radius: 0;
    box-shadow: none;
    background-color: #f5f5f5;
    color: #8c8c8c;
}

.fw-skills-bar .progress-title,
.fw-skills-bar .progress-level {
    font-size: 14px;
    font-size: 1.4rem;
    font-weight: 700;
    line-height: 1.7143;
    text-transform: uppercase;
    color: #8c8c8c;
}

.fw-skills-bar .progress-level {
    float: right;
}

.fw-skills-bar .progress-bar {
    background-color: #fcca03;
    background: -moz-linear-gradient(left, #e04f4f 0%, #fcca03 100%);
    background: -webkit-linear-gradient(left, #e04f4f 0%, #fcca03 100%);
    background: linear-gradient(to right, #e04f4f 0%, #fcca03 100%);
    color: #f5f5f5;
}

.fw-skills-bar .progress-bar::before {
    content: '||||||||||||||||||||||||||||||||||||||';
    position: absolute;
    top: 0;
    left: -3px;
    font-size: 12px;
    line-height: 10px;
    letter-spacing: 48px;
}