.slider {
    height: 30px;
    max-width: 800px;
    width: 100%;
    background-color: #f7f7f7;
    border: 1px solid #ddd;
    display: flex;
    align-items: center;
    margin-top: 50px;
    margin-bottom: 50px;
    position: relative;

    .filled {
        width: 60%;
        height: 30px;
        background-color: #ff7c00;
        position: relative;

        > span {
            top: -30px;
            left: 0;
        }
    }

    .pointer {
        height: 50px;
        width: 4px;
        background-color: #bebebe;
        border: 2px solid #ddd;

        > span {
            bottom: -24px;
            right: 0;
            left: auto;
            text-align: right;
        }
    }

    span {
        position: absolute;
        bottom: -20px;
        width: 250px;
        left: 10px;
        font-weight: bold;
    }
}
