/*Skill bar*/
.mg-skills {
    padding-top: 1px;
}

.mg-skill {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    border-radius: 15px;
    background-color: #e9ecef;
    font-size: 0.75rem;
}

.mg-skill--inside .mg-skill-info,
.mg-skill--outside .mg-skill-info {
    text-align: left;
    font-size: 14px;
    line-height: 1;
}

.mg-skill--inside .mg-skill-level-text,
.mg-skill--outside .mg-skill-level-text {
    float: right;
}

.mg-skill--outside {
    height: 2px;
}

.mg-skill--outside .mg-skill-level {
    position: relative;
}

.mg-skill--outside .mg-skill-info {
    position: absolute;
    top: -25px;
    width: 100%;
    color: #242424;
}

.mg-skill--inside {
    height: 30px;
}

.mg-skill--inside .mg-skill-info {
    padding-right: 1rem;
    padding-left: 1rem;
    color: #fff;
}

.mg-skill-level {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    width: 10%;
    border-radius: inherit;
    background-color: #562dd4;
    color: #fff;
    text-align: center;
    white-space: nowrap;
    -webkit-transition: width 0.6s ease;
    transition: width 0.6s ease;
}

.mg-skill--outside {
    margin-top: 40px;
}

.mg-skill--inside:not(:first-child) {
    margin-top: 20px;
}

.mg-skill-name {
    display: inline-block;
    overflow: hidden;
    max-width: 70%;
    text-overflow: ellipsis;
}