/*------------------------------------------------------------------
Skillbars
-------------------------------------------------------------------*/
.yte-skillbar {
    position: relative;
    display: block;
    width: 100%;
    margin-bottom: 8px;
}

.yte-skillbar.style-inner.disable-box-shadow,
.yte-skillbar.style-outside.disable-box-shadow .yte-skillbar-container {
    -webkit-box-shadow: none;
    box-shadow: none;
}

.yte-skillbar-bar {
    position: relative;
    z-index: 1;
    width: 0;
    height: 100%;
    color: #fff;
    border-radius: 30px;
    background-color: #13aff0;
}

/*style inner*/
.yte-skillbar.style-inner {
    line-height: 40px;
    height: 40px;
    border-radius: 30px;
    background-color: #f6f6f6;
    -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, .1);
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, .1);
}

.yte-skillbar.style-inner .yte-skillbar-title {
    position: absolute;
    z-index: 2;
    top: 0;
    left: 6px;
    color: #fff;
}

.yte-skillbar.style-inner .yte-skillbar-title .yte-skillbar-title-inner {
    display: block;
    padding: 0 12px;
}

.yte-skillbar.style-inner .yte-skill-bar-percent {
    position: absolute;
    top: 0;
    right: 20px;
    text-align: center;
    color: #fff;
}

/*style outside*/
.yte-skillbar.style-outside {
    margin: 5px 0 15px;
}

.yte-skillbar.style-outside .yte-skillbar-container {
    height: 12px;
    margin-top: 6px;
    border-radius: 30px;
    background-color: #f6f6f6;
    -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, .1);
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, .1);
}

.yte-skillbar.style-outside .yte-skillbar-title {
    font-weight: 600;
    float: left;
    color: #333;
}

.yte-skillbar.style-outside .yte-skill-bar-percent {
    position: absolute;
    top: 0;
    right: 0;
}

/*stripe effect*/
.yte-skill-bar-stripe {
    position: absolute;
    left: 0;
    width: 100%;
    height: 100%;
    -webkit-transition: width 1s linear;
    transition: width 1s linear;
    -webkit-animation: skill-bar-stripes 1.5s linear infinite;
    animation: skill-bar-stripes 1.5s linear infinite;
    border-radius: 30px;
    background-image: -webkit-linear-gradient(-45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
    background-image: -webkit-linear-gradient(135deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
    background-image: linear-gradient(-45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
    background-size: 44px 44px;
}

@-webkit-keyframes skill-bar-stripes {
    from {
        background-position: 40px 0;
    }
    to {
        background-position: 0 0;
    }
}

@keyframes skill-bar-stripes {
    from {
        background-position: 40px 0;
    }
    to {
        background-position: 0 0;
    }
}