.dl-skill-items {
    display: grid;
    grid-template-columns: 1fr;
    grid-row-gap: 15px;
}

.dl-skill-view-outside{
    grid-row-gap: 50px;
    padding-top: 36px;
}

.text-outside .dl-skill-items{
    grid-row-gap: 45px;
    margin-top: 35px;
}

.dl-skill {
    display: flex;
    border-radius: 15px;
    background-color: #eee;
    font-size: .75rem
}

.dl-skill--inside .dl-skill-info, .dl-skill--outside .dl-skill-info {
    text-align: start;
    font-size: 14px
}

.dl-skill--inside .dl-skill-info>span:first-child() {
    z-index: 1;
}

.dl-skill--inside .dl-skill-level-text, .dl-skill--outside .dl-skill-level-text {
    float: right;
}

body.rtl .dl-skill--inside .dl-skill-level-text, 
body.rtl .dl-skill--outside .dl-skill-level-text {
    float: left;
}

.dl-skill--outside .dl-skill-level-text {
    color: #fff;
    width: 40px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin-top: -5px;
    margin-right: -10px;
    padding-bottom: 5px;
}

body.rtl .dl-skill--outside .dl-skill-level-text{
    margin-right: 0;
    margin-left: -10px;
}

.is-shape .dl-skill--outside .dl-skill-level-text{
    background-image: url(../../img/brockley.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;
    width: 60px;
    height: 60px;
    align-items: flex-start;
    margin-top: -28px;
    margin-right: -24px;
    padding-bottom: 0;
    font-size: 20px;
    font-weight: 500;
    line-height: 38px;
    padding-left: 5px;
}

body.rtl .is-shape .dl-skill--outside .dl-skill-level-text{
    margin-right: 0;
    margin-left: -24px;
}

.dl-skill-items:not(.is-shape) .dl-skill--outside .dl-skill-level-text {
    background-color: #729b23;
    border-radius: 2px;
    clip-path: polygon(0% 0%, 100% 0%, 100% 75%, 75% 75%, 75% 100%, 50% 75%, 0% 75%);
}

.dl-skill--outside>div {
    height: 2px
}

.dl-skill--outside .dl-skill-level {
    position: relative
}

.dl-skill--outside .dl-skill-info {
    position: absolute;
    top: -30px;
    width: 100%;
    color: #111;
}

.dl-skill--inside>div {
    height: 30px;
}

.dl-skill--inside {
    padding: 15px;
}

.dl-skill--inside .dl-skill-info {
    padding-right: 1rem;
    padding-left: 1rem;
    color: #fff;
}

.dl-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: #729b23;
    color: #fff;
    text-align: center;
    white-space: nowrap;
    -webkit-transition: width .6s ease;
    transition: width .6s ease
}