.levels {
    width: 100%;
}

.level-bar {

}

.level-header {
    display: flex;
    margin-bottom: 40px;
}

.level-num {
    color: #333333;
    font-size: 46px;
    height: 100px;
    line-height: 120px;
    position: relative;
    text-align: center;
    width: 120px;
    display: inline-block;
    margin-right: 40px;
}

.level-num svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 120px;
    height: 120px;
}

.level-num svg circle {
    fill: transparent;
    stroke: #f7b23b;
    stroke-width: 12;
}

.level-num svg circle:nth-child(2n) {
    stroke: #e6e6e6;
}

.level-value {
    color: #3a405b;
    cursor: pointer;
    z-index: 10;
    position: relative;
}

#level-circle {

}

.level-stats {
    flex: 1;
}

.level-points {
    display: flex;
    margin-bottom: 10px;
    border: 1px solid #673ab712;
    background: #673ab708;
    padding: 10px 15px;
    border-radius: 4px;    
}

.level-desc {
    color: #9e9e9e;
}

.level-links a {
    margin-right: 20px;
}

.points-bar {
    width: 16.66%;
    text-align: right;
    font-size: 18px;    
    cursor: help;
}

.level-points .points-bar:first-child {
    width: 25%;
}

.points-bar i {
    display: flex;
    width: 24px;
    height: 24px;
    margin-right: 10px;
    flex: 1;
}

#points-all i {background: url(../img/icons/level-all.svg) no-repeat right;}
#points-activity i {background: url(../img/icons/level-activity.svg) no-repeat right;}
#points-progression i {background: url(../img/icons/level-progression.png) no-repeat right;}
#points-quest i {background: url(../img/icons/award_points.svg) no-repeat right;}
#points-event i {background: url(../img/icons/level-event.svg) no-repeat right;}
#points-auction i {background: url(../img/icons/level-auction.svg) no-repeat right;}

.points-bar span {
    
}

.points-bar .top {
    display: flex;
}

.points-bar .bottom {
    font-size: 14px;
    color: #9e9e9e;
    text-transform: lowercase;
    margin-top: 5px;
}

.points-bar .bottom b {
    margin-left: 7px;
    text-transform: uppercase;
}

.points-bar b {
    color: #ff5722;
}

.level-list-header {
    display: flex;
}

.level-list-header div {
    text-align: center;
}

.level-list-header div:nth-child(1) {width: 100px;}
.level-list-header div:nth-child(2) {flex: 1;}
.level-list-header div:nth-child(3) {width: 150px;}

.level-list {

}

.level-item {    
    border: 2px solid #ededed;
    margin: 15px 0;
    border-radius: 6px;    
    position: relative;
    overflow: hidden;
    transition: margin 0.2s;
}

.level-item:hover {
    /* margin: 15px 0px;
    padding: 0 10px; */
}

.level-item.current {
    border: 2px solid #ffc107;
    background: #ffc10717;
}

.award-item .ribbon_title  {
    left: 28px;
    right: unset;
    top: -25px;
}

.label-current {
    position: absolute;
    right: 0;
    top: 0;
    text-align: center;
    background: #3f51b5;
    color: #fff;
    padding: 2px 12px;
    opacity: 0.85;
    text-transform: uppercase;
    font-size: 12px;
}

.level-list .level-item:last-child {
    
}

.item-inner {
    display: flex;
    min-height: 130px;
}

.level-item.current .item-inner {
    min-height: 140px;
}

.item-left {
    width: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 35px;
}

.item-content {
    flex: 1;
    display: flex;
    flex-wrap: wrap;
    padding: 10px 5px 10px 40px;
}

.item-right {
    width: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px; 
}

.item-current-bar {
    position: relative;
    background: #ededed;
    font-size: 12px;
    line-height: normal;
}

.item-current-bg {
    position: absolute;
    height: 100%;
    left: 0;
    top: 0;
    display: block;
    background: #8bc34a7d;
}

.item-current-label {
    text-align: center;
}

.award-item {
    display: flex;
    align-items: center;
    width: 100%;
    padding: 5px 0;
}

.award-img {
    height: 65px;
    width: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.award-img.small-img {
    height: 35px;
    width: 100px;
}

.award-img img {
    max-width: 100%;
    max-height: 100%;
}

.award-title {
    font-size: 18px;
    margin-left: 10px;
}

.award-title .title-top {

}

.award-title .title-bottom {
    font-size: 14px;
    color: #9e9e9e;
}

.award-title span {

}

.award-title span.old {
    text-decoration: line-through;
    margin: 0 4px;
}

.award-title span.new {
    font-weight: bold;
}

.level-show-hidden {
    text-align: center;
    margin: 30px 0;
}

.level-show-hidden a {
    color: #4a4a4a;
    padding: 10px 30px;
    border-radius: 5px;
    border: 1px solid #f3f3f3;
}

.level-show-hidden a:hover {
    background-color: #fbfbfb;
}

.level-item.hidden {
    display: none;
}

.content-container {
    padding-top: 0;
    border: none;
    border-radius: 0;
    padding-left: unset !important;
}

@media screen and (max-width: 640px) {
    .level-header {
        display: block;
    }
    .level-num {
        width: 100%;
        height: 120px;
        margin-right: 0;
    }
    .level-num svg {
        left: calc(50% - 60px);
    }
    .level-stats {
        margin-top: 20px;
    }
    .level-points {
        flex-wrap: wrap;
        padding: 10px 0px;
    }
    .points-bar {
        width: 20%;
    }
    .points-bar b {
        display: none;
    }
    .level-points .points-bar:first-child {
        width: 20%;
    }
    .points-bar .bottom {
        margin-top: 0;
        text-align: center;
        font-size: 13px;
    }
    .points-bar .top {
        display: block;        
    }
    .points-bar span {
        margin-top: 5px;
    }
    .points-bar i {
        display: block;
        margin: 0 auto;
    }
    .points-bar span {
        width: 100%;
        display: block;
        text-align: center;
    }
    .level-list-header {
        display: none;
    }
    .item-inner {
        position: relative;
    }
    .item-left {
        width: unset;
        align-items: unset;
        justify-content: unset;
        font-size: 20px;
        position: absolute;
        left: 0;
        top: 0;
        padding: 5px 10px;
        background: #ededed;
        border-radius: 0 0 4px 0;
    }
    .item-right {
        width: unset;
        font-size: 14px;
        position: absolute;
        right: 0;
        top: 0;
        padding: 5px 10px;
    }
    .current .item-right {
        display: none;
    }
    .item-content {
        padding: 40px 5px 10px 5px;
    }
    .award-img {
        height: 50px;
        width: 80px;
    }
    .award-img.small-img {
        height: 35px;
        width: 80px;
    }
    .award-title {
        flex: 1;
    }
    .award-title .title-top {
        font-size: 16px;
    }
    .award-title .title-bottom {
        font-size: 12px;
        line-height: 16px;
    }
    .award-item .ribbon_title {
        left: unset;
        right: 10px;
        white-space: nowrap;
    }
    .ribbon_flag {
        font-size: 14px;
    }
}