﻿/*Range style*/
.rng-slider {
    appearance: none;
    width: calc(100% - (73px));
    height: 10px;
    border-radius: 5px;
    background: #d7dcdf;
    outline: none;
    padding: 0;
    margin: 0;
}

    /*Range black thumb*/
    .rng-slider::-webkit-slider-thumb {
        appearance: none;
        width: 20px;
        height: 20px;
        border-radius: 100%;
        background: rgb(255 255 255);
        border: 1px solid rgb(215 220 223);
        cursor: pointer;
        transition: background 0.15s ease-in-out;
    }

        /*On hover change colour of black thumb into green and scale size*/
        .rng-slider::-webkit-slider-thumb:hover {
            transform: scale(1.1);
            border: none;
            background: rgb(34, 105, 245);
        }

    .rng-slider:active::-webkit-slider-thumb {
        transform: scale(1.1);
        border: none;
        background: rgb(34, 105, 245);
    }

/*Range current value*/
.rng-value {
    display: inline-block;
    position: relative;
    width: 60px;
    color: #fff;
    line-height: 20px;
    text-align: center;
    border-radius: 3px;
    background: rgb(34, 105, 245);
    padding: 5px 10px;
    margin-left: 8px;
}

    .rng-value:after {
        position: absolute;
        top: 8px;
        left: -7px;
        width: 0;
        height: 0;
        border-top: 7px solid transparent;
        border-right: 7px solid rgb(34, 105, 245);
        border-bottom: 7px solid transparent;
        content: "";
    }
