.Hylia-a-range {
    position: relative;

    margin-bottom: 2rem;
    padding-top: 3rem;
    width: 100%;

    &__tooltip {
        position: absolute;
        z-index: 1;
        left: -0.5rem;
        bottom: -0.5rem;
    
        cursor: -webkit-grab;
        cursor:    -moz-grab;
        cursor: grap;
        transform: translateX(-50%);
    
        &:active {
            cursor: -webkit-grabbing;
            cursor:    -moz-grabbing;
            cursor:         grabbing;
        }
    
        &__pointer {
            font-size: 1.2rem;
    
            display: block;
    
            width: 1.4rem;
            height: 1.4rem;
    
            border: 0.5rem solid @schtroumpf;
            border-radius: 100rem;
            background: @stormtrooper;
    
            &--percent {
                margin: auto;
                margin-top: 0.5rem;
            }
    
            &--target {
                position: absolute;
                z-index: 100;
                bottom: -0.1rem;
    
                display: inline-flex;
                align-items: center;
                justify-content: center;
            }
        }
    
        &__number {
            font-size: 1.2rem;
            position: relative;
            padding: 0.2rem 0.8rem;
            color: @schtroumpf;
            border-radius: 1000rem;
            background-color: fade(@schtroumpf, 25);
            user-select: none;
        }
    }
    
    &__progress {
        position: relative;
    
        height: 0.5rem;
    
        border-radius: 1000rem;
        background-color: @apprentice;
    
        &__state {
            background-color: @schtroumpf;
            position: absolute;
            top: 0;
            left: 0;
    
            height: 0.5rem;
    
            border-radius: 100rem;
        }
    }    
}