@font-face {
    font-family: 'Neuropol';
    src: url('../fonts/neuropol.otf') format('opentype');
    font-display: block;
}

@font-face {
    font-family: 'DIN Next LT Pro-Regular';
    src: url('../fonts/DIN_Next_LT_Pro-Regular.woff2') format('woff2');
    font-display: block;
}

.neuropol {
    font-family: 'Neuropol';
    user-select: none;
}

.din {
    font-family: 'DIN Next LT Pro-Regular';
    user-select: none;

}

.ff_titles h2 {
    font-size: 32px;
    color: black;
    line-height: 32px;
    font-weight: 100;
    letter-spacing: 5px;
}

.ff_titles h3 {
    font-size: 11px;
    color: black;
    line-height: 17px;
    font-weight: 100;
    letter-spacing: 2px;
    text-transform: uppercase;
}

#featuredGraph {
    max-width: 600px;
    margin: 0;
}
#featuredGraph>div{
    width: 100%;
}

.feature {
    position: relative;
    margin-bottom: 6px;
    background: linear-gradient(to right, #cccccc 30%, #4d4d4dd6);
    border-radius: 10px;
    overflow: hidden;
    flex-grow: 1;
    min-width: 0;
}

.feature-medium {
    background: linear-gradient(to right, #cccccc 68%, #4d4d4dd6);
}


.level-bar {
    position: relative;
    height: 16px;
    background: transparent;
    overflow: hidden;
}

.low::before,
.medium::before,
.high::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    background: linear-gradient(to right, #f9b252, #cc4f47);
    border-radius: 10px;
    width: 0;
    transition: width 0.2s ease-in-out;
}

/* .low::before {
    width: 35%;
}

.medium::before {
    width: 70%;
}

.high::before {
    width: 100%;
} */

.feature-name {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    color: white;
    font-size: 12px;
    margin-left: 10px !important;
    margin-top: 1px;
    line-height: 10px;
    cursor: pointer;
    text-shadow: 0px 0px 13px black;
    transition: 0.5s;
}

.feature-name:hover {
    font-size: 13px;
    transition: 0.1s;
}

.level-text {
    font-weight: 100;
    margin-left: 10px;
    width: 10%;
    margin-top: -3px;
    color: black;
    letter-spacing: 1px;
}

@media(max-width:767px) {
    .level-text {
        width: 21%;
    }
}

@keyframes fillLow {
    0% {
        width: 0;
    }

    100% {
        width: var(--percentage);
    }
}

.low::before {
    animation: fillLow 3s ease-in-out forwards;
}